diff options
author | 2023-09-10 04:04:05 +0200 | |
---|---|---|
committer | 2023-09-09 19:04:05 -0700 | |
commit | e2d327881c5bd92ab06f5b6fd6d7b501459e05f9 (patch) | |
tree | 8c1dd88a71930254d9cee5209e0461d5295daa93 | |
parent | 4280f74429f0cf9ae56ffcf5ad7abcbd01c8c68c (diff) | |
download | bun-e2d327881c5bd92ab06f5b6fd6d7b501459e05f9.tar.gz bun-e2d327881c5bd92ab06f5b6fd6d7b501459e05f9.tar.zst bun-e2d327881c5bd92ab06f5b6fd6d7b501459e05f9.zip |
fix(docs); typo on Nuxt guide page (#4745)
-rw-r--r-- | docs/guides/ecosystem/nuxt.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guides/ecosystem/nuxt.md b/docs/guides/ecosystem/nuxt.md index 3a2e88c5a..c86029dc2 100644 --- a/docs/guides/ecosystem/nuxt.md +++ b/docs/guides/ecosystem/nuxt.md @@ -45,9 +45,9 @@ Nuxt 3.6.5 with Nitro 2.5.2 --- -Once the dev server spins up, open [http://localhost:3000](http://localhost:3000) to see the app. The app will render Nuxt's built-in `WelcomePage` template component. +Once the dev server spins up, open [http://localhost:3000](http://localhost:3000) to see the app. The app will render Nuxt's built-in `NuxtWelcome` template component. -To start developing your app, replace `<WelcomePage />` in `app.vue` with your own UI. +To start developing your app, replace `<NuxtWelcome />` in `app.vue` with your own UI. {% image src="https://github.com/oven-sh/bun/assets/3084745/2c683ecc-3298-4bb0-b8c0-cf4cfaea1daa" caption="Demo Nuxt app running on localhost" /%} |