` and `\u003CNuxtLayout />` components in the below way:\r\n```vue\r\n \u003Cdiv v-if=\"loading\">loading...\u003C/div>\r\n \u003CNuxtLayout v-else>\r\n \u003CNuxtPage />\r\n \u003C/NuxtLayout>\r\n```\r\n\r\nBut it shows up the below warning in console log.\r\n```\r\n[nuxt] Your project has pages but the `\u003CNuxtPage />` component has not been used. You might be using the `\u003CRouterView />` component instead, which will not work correctly in Nuxt. You can set `pages: false` in `nuxt.config` if you do not wish to use the Nuxt `vue-router` integration.\r\n[nuxt] Your project has layouts but the `\u003CNuxtLayout />` component has not been used.\r\n```\r\n\r\n### Additional context\r\n\r\nMy purpose is fetching some environment data from server before NuxtLayout and NuxtPage rendered and shows a loading layout. In addition, I will use it with SSR off.\r\n\r\n### Logs\r\n\r\n_No response_",[3023],{"name":3024,"color":3025},"🍰 p2-nice-to-have","0E8A16",25912,"nuxt","open","\"NuxtPage / NuxtLayout component has not been used\" warn when NuxtLayout async show up","2025-02-21T12:34:45Z","https://github.com/nuxt/nuxt/issues/25912",0.6991265,{"description":3034,"labels":3035,"number":3045,"owner":3027,"repository":3046,"state":3028,"title":3047,"updated_at":3048,"url":3049,"score":3050},"### Environment\n\n------------------------------\n- Operating System: Darwin\n- Node Version: v22.16.0\n- Nuxt Version: 3.17.5\n- CLI Version: 3.25.1\n- Nitro Version: 2.11.12\n- Package Manager: pnpm@10.12.1\n- Builder: -\n- User Config: modules, devtools, css, content, ui, runtimeConfig, future, compatibilityDate, hooks, dayjs, eslint, pwa, supabase, tiptap\n- Runtime Modules: @nuxt/eslint@1.4.1, @nuxt/ui-pro@3.1.3, @vueuse/nuxt@13.4.0, @nuxt/icon@1.14.0, @nuxt/image@1.10.0, @nuxtjs/supabase@1.5.2, @vite-pwa/nuxt@1.0.4, dayjs-nuxt@2.1.11, nuxt-mcp@0.2.3, @nuxtjs/mdc@0.17.0, nuxt-tiptap-editor@2.2.1, @nuxt/content@3.6.1\n- Build Modules: -\n------------------------------\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.1.3\n\n### Reproduction\n\nPlease read the description\n\n### Description\n\nUnfortunately nuxt MDC doesn't render any data if you not add this to your nuxt.config.ts\n\n```\n vite: {\n optimizeDeps: {\n include: ['debug']\n },\n }\n```\n\nI've tested it with a blank project and if you don't add this MDC is not rendering any data after page load. I think this should be added to the documentation. This can be frustrating.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3036,3039,3042],{"name":3037,"color":3038},"bug","d73a4a",{"name":3040,"color":3041},"v3","49DCB8",{"name":3043,"color":3044},"triage","ffffff",4390,"ui","ChatPalette not showing stream/response nor submitted user input","2025-06-23T16:12:37Z","https://github.com/nuxt/ui/issues/4390",0.70744306,{"description":3052,"labels":3053,"number":3060,"owner":3027,"repository":3027,"state":3028,"title":3061,"updated_at":3062,"url":3063,"score":3064},"### Environment\n\n- Operating System: Linux\r\n- Node Version: v18.18.0\r\n- Nuxt Version: 3.10.3\r\n- CLI Version: 3.10.1\r\n- Nitro Version: 2.8.1\r\n- Package Manager: npm@10.2.3\r\n- Builder: -\r\n- User Config: devtools, experimental\r\n- Runtime Modules: -\r\n- Build Modules: -\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-starter-sf3hkd?file=components%2FTest.vue,components%2FHero.server.vue,app.vue\r\n\r\n1. `npm run build && npm run preview`\r\n2. observe that styles from `Test` component are missing in build and so not included when page loads\n\n### Describe the bug\n\nIt's really weird that this happens only with production build, but anyway, when using some renderless component within `.server.vue` component, the styles (from that renderless component) won't be included in final bundle, so they can't be loaded. I also should mention, that the styles will be included if you move that component out of island, as it should be\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3054,3057],{"name":3055,"color":3056},"pending triage","E99695",{"name":3058,"color":3059},"server components","839413",25923,"Missing styles in production when using renderless component within server component","2024-09-30T03:14:51Z","https://github.com/nuxt/nuxt/issues/25923",0.71124405,{"description":3066,"labels":3067,"number":3074,"owner":3027,"repository":3046,"state":3075,"title":3076,"updated_at":3077,"url":3078,"score":3079},"### Environment\n\nOperating System: `Darwin`\nNode Version: `v22.1.0`\nNuxt Version: `3.16.2`\nCLI Version: `3.24.0`\nNitro Version: `2.11.8`\nPackage Manager: `yarn@4.7.0`\nBuilder: `-`\nUser Config: `ssr: false`\nBuild Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\n3.16.2\n\n### Reproduction\n\n-\n\n### Description\n\n**App.vue**\n```\n\u003Ctemplate>\n \u003CUApp :toaster=\"{ position: 'top-right', expand: true }\"\n :tooltip=\"{ delayDuration: 150, skipDelayDuration: 100 }\">\n \u003CNuxtLayout>\n \u003CRouterView />\n \u003C/NuxtLayout>\n \u003C/UApp>\n\u003C/template>\n\u003Cscript setup lang=\"ts\">\nimport {TooltipProviderProps} from \"reka-ui\";\n\nconst tooltipProps : TooltipProviderProps = {\n delayDuration: 700,\n skipDelayDuration: 300,\n disableHoverableContent: false,\n disableClosingTrigger: false,\n disabled: false,\n ignoreNonKeyboardFocus: false,\n}\n\u003C/script>\n```\n**nuxt.config.ts**\n```\n// https://nuxt.com/docs/api/configuration/nuxt-config\nexport default defineNuxtConfig({\n compatibilityDate: '2024-11-01',\n ssr: false,\n srcDir: 'src',\n devtools: { enabled: true },\n modules: [\n '@nuxt/ui',\n '@pinia/nuxt',\n '@nuxt/image',\n 'nuxt-icons',\n '@nuxtjs/i18n',\n ],\n css: ['~/assets/css/main.css']\n})\n```\nI found that when Nuxt3 SSR is set to false, the tooltip and toast do not display, and the tooltip also reports an error of 500\n\nInjection `Symbol(TooltipProviderContext)` not found. Component must be used within `TooltipProvider`\n\nI hope to find a solution.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3068,3069,3072,3073],{"name":3037,"color":3038},{"name":3070,"color":3071},"needs reproduction","CB47CF",{"name":3040,"color":3041},{"name":3043,"color":3044},3932,"closed","Nuxt3 SSR is set to false, the tooltip and toast become invalid","2025-04-30T13:24:47Z","https://github.com/nuxt/ui/issues/3932",0.66995287,{"description":3081,"labels":3082,"number":3086,"owner":3027,"repository":3046,"state":3075,"title":3087,"updated_at":3088,"url":3089,"score":3090},"### Environment\n\n- Operating System: Linux\n- Node Version: v22.14.0\n- Nuxt Version: 3.17.3\n- CLI Version: 3.25.1\n- Nitro Version: 2.11.12\n- Package Manager: npm@11.3.0\n- Builder: -\n- User Config: app, build, colorMode, compatibilityDate, debug, devtools, fonts, future, hooks, i18n, icon, imports, modules, nitro, routeRules, runtimeConfig, security, ssr, sourcemap, css, telemetry, vite\n- Runtime Modules: @nuxt/eslint@1.4.1, @pinia/nuxt@0.11.0, @vueuse/nuxt@13.3.0, @nuxtjs/i18n@9.5.4, nuxt-security@2.2.0, @nuxt/ui@3.1.3\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.17.3\n\n### Reproduction\n\nNo reproduction possible\n\n### Description\n\nWe've got 3 reports of this issue using Sentry (error reporting tool). Seems easy to fix to me, propably some timing issue 😊 \nIt did not show or cause any issue to the user, so it might be low priority.\n\n\n\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3083,3084,3085],{"name":3037,"color":3038},{"name":3040,"color":3041},{"name":3043,"color":3044},4265,"TypeError in Toast.vue","2025-06-05T10:13:38Z","https://github.com/nuxt/ui/issues/4265",0.6709325,{"description":3092,"labels":3093,"number":3099,"owner":3027,"repository":3046,"state":3075,"title":3100,"updated_at":3101,"url":3102,"score":3103},"### Environment\n\nNuxt project info: (copied to clipboard) nuxi 8:34:52 pm\n\nOperating System: Linux\nNode Version: v22.17.1\nNuxt Version: 4.0.0\nCLI Version: 3.26.2\nNitro Version: 2.12.0\nPackage Manager: bun@1.2.15\nBuilder: -\nUser Config: modules, runtimeConfig, devtools, ui, css, colorMode, compatibilityDate, eslint\nRuntime Modules: @nuxt/ui@3.2.0, @nuxt/ui-pro@3.2.0, @pinia/nuxt@0.5.5, @nuxt/eslint@1.6.0\nBuild Modules: -\n👉 Report an issue: https://github.com/nuxt/nuxt/issues/new?template=bug-report.yml\n👉 Suggest an improvement: https://github.com/nuxt/nuxt/discussions/new\n👉 Read documentation: https://nuxt.com/\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.1.2\n\n### Reproduction\n\nSee Nuxt UI official docs page -\nhttps://ui.nuxt.com/components/dashboard-sidebar\n\n### Description\n\nUI is not rendering correctly on the web page or on my local machine.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3094,3095,3098],{"name":3037,"color":3038},{"name":3096,"color":3097},"documentation","0075ca",{"name":3040,"color":3041},4610,"UI not rendering for certain Dashboard components","2025-07-29T21:07:34Z","https://github.com/nuxt/ui/issues/4610",0.682509,{"description":3105,"labels":3106,"number":3114,"owner":3027,"repository":3027,"state":3075,"title":3115,"updated_at":3116,"url":3117,"score":3118},"### Environment\n\n------------------------------\r\n- Operating System: `Linux`\r\n- Node Version: `v16.14.2`\r\n- Nuxt Version: `3.0.0-rc.9`\r\n- Nitro Version: `0.5.1`\r\n- Package Manager: `npm@7.17.0`\r\n- Builder: `vite`\r\n- User Config: `-`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n------------------------------\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-starter-ytp3rx?file=app.vue\n\n### Describe the bug\n\nWhen you create a minimal application without a `nuxt.config.ts` (so just `app.vue` for example), the \"default `app.vue`\" will be shown forever.\r\n\r\nThis can only be resolved by adding back a `nuxt.config.ts` (or js)\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3107,3110,3111],{"name":3108,"color":3109},"3.x","29bc7f",{"name":3037,"color":3038},{"name":3112,"color":3113},"❗ p4-important","D93F0B",14848,"Welcome component will stay when no `nuxt.config.ts` exists","2023-01-19T17:41:13Z","https://github.com/nuxt/nuxt/issues/14848",0.6926461,{"description":3120,"labels":3121,"number":3125,"owner":3027,"repository":3046,"state":3075,"title":3126,"updated_at":3127,"url":3128,"score":3129},"### Environment\n\n- Operating System: Linux\n- Node Version: v20.12.0\n- Nuxt Version: 3.17.3\n- CLI Version: 3.25.1\n- Nitro Version: 2.11.12\n- Package Manager: pnpm@8.15.6\n- Builder: -\n- User Config: modules, devtools, compatibilityDate, future, css\n- Runtime Modules: @nuxt/ui@3.1.1\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\n3.1.1\n3.2.0\n\n### Reproduction\n\nhttps://codesandbox.io/p/devbox/crazy-hawking-6gfzld?workspaceId=ws_Q5C3Bq2RRtqpENUnM12LKF\n\n### Description\n\nI’ve encountered an issue with Nuxt UI’s AppConfigInput. \n\nI created a fresh Nuxt app using Nuxt UI v3.1.1/3.2.0 and, following the docs, extended AppConfigInput.\nBut in app.config.ts, when I press Ctrl+Space, I only see **icon** and **theme** field - **ui** no longer appears.\n\nI think in 3.0.x it was working.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3122,3123,3124],{"name":3037,"color":3038},{"name":3040,"color":3041},{"name":3043,"color":3044},4461,"Missing ui Property in app.config.ts","2025-07-08T13:36:25Z","https://github.com/nuxt/ui/issues/4461",0.6944248,{"labels":3131,"number":3139,"owner":3027,"repository":3027,"state":3075,"title":3140,"updated_at":3141,"url":3142,"score":3143},[3132,3133,3136],{"name":3108,"color":3109},{"name":3134,"color":3135},"upstream","E8A36D",{"name":3137,"color":3138},"upstream-bug","B60205",13793,"Primevue: Toast duplicates elements after it","2023-01-19T17:06:05Z","https://github.com/nuxt/nuxt/issues/13793",0.6948989,{"description":3145,"labels":3146,"number":3150,"owner":3027,"repository":3046,"state":3075,"title":3151,"updated_at":3152,"url":3153,"score":3154},"### Environment\n\n- OS: tested on macOS (with nuxtUI v3+) and StackBlitz (with nuxtUI 2+)\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\n^3.1.3\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-ui-bhmakssh?file=app.vue\n\n### Description\n\nWhile toogling visibility of a nuxt UI component with v-if work perfectly, toggling visibility with v-show does not work as expected (style=\"display: none;\" remaine applied)\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3147,3148,3149],{"name":3037,"color":3038},{"name":3040,"color":3041},{"name":3043,"color":3044},4347,"v-show not working with nuxt UI component","2025-06-24T10:03:57Z","https://github.com/nuxt/ui/issues/4347",0.6958439,["Reactive",3156],{},["Set"],["ShallowReactive",3159],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$feG5numJoGHdCLaqs4CNm9bs3Sh6X9jkUZgNXT28Q2UQ":-1},"/nuxt/ui/3564"]