From ac6624b892fb5c6de6623bcb3e6e02e8caabfc9c Mon Sep 17 00:00:00 2001 From: felixindrawan Date: Wed, 3 Jul 2024 10:13:12 -0700 Subject: [PATCH] fix: add missing html from nuxt README guide --- hello-world/nuxt/README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/hello-world/nuxt/README.md b/hello-world/nuxt/README.md index 41320347..b2e19a08 100644 --- a/hello-world/nuxt/README.md +++ b/hello-world/nuxt/README.md @@ -25,7 +25,7 @@ npm install npm run dev ``` -Then open `https://localhost:3000/` to viewthe sample app. +Then open `https://localhost:3000/` to view the sample app. ## Creating the sample project @@ -188,7 +188,7 @@ onMounted(async () => { // dispose cvRouter when it's no longer needed onBeforeUnmount(async () => { - bDestoryed = true; + isDestroyed = true; try { await pInit; cvRouter?.dispose(); @@ -196,6 +196,15 @@ onBeforeUnmount(async () => { } catch (_) { } }); + + ``` > Note: >