\n \u003Ctemplate #fallback>\n loading....\n \u003C/template>\n\u003C/Suspense>\n```\n\nIs it possible Nuxt built in lazy component to support `#fallback` slot similar to vue3 `Suspense`? or else is there any way to show skeleton screen already? or am I wrong to approach problem?\n\nDue to this issue, we went with `Suspense` experimental solution, but will be happy to replace with Nuxt built lazy load once it supports `#fallback` slot.\n\nThanks\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [x] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [x] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2015,2017,2020],{"name":2001,"color":2016},"8DEF37",{"name":2018,"color":2019},"good first issue","fbca04",{"name":2021,"color":2022},"🍰 p2-nice-to-have","0E8A16",30264,"support `#fallback` slot for lazy Nuxt components","2025-01-10T16:14:56Z","https://github.com/nuxt/nuxt/issues/30264",0.7537654,{"description":2029,"labels":2030,"number":2036,"owner":1991,"repository":1991,"state":1992,"title":2037,"updated_at":2038,"url":2039,"score":2040},"### Describe the feature\n\nI think it is a common use case (at least I have it a lot) that you want to have some side effects when navigating via NuxtLink that need to wait until the navigation is complete, e.g. if you have a link in a menu or dropdown that should close when clicking the link. If the target page is complex and takes a few hundred ms to render there is a strange flicker if you you do not await \"navigation complete\", aka. the menu closes but still shows the current page for two blinks of an eye before the new page shows up.\r\n\r\nA simple solution would be the following:\r\n\r\n```vue\r\n\u003CNuxtLink\r\n to=\"/some-page\"\r\n title=\"Some page\"\r\n @navigation-complete=\"closeMenu()\"\r\n/>\r\n```\r\n\r\nI think implementation should be simple. In the NuxtLink component we would just need to do\r\n\r\n```ts\r\nnavigateTo(...)\r\n // New:\r\n .then(emit('navigationComplete', to))\r\n```\r\n\r\nI guess???\r\n\r\nIf that seems useful I might try my luck with a PR...\n\n### Additional information\n\n- [x] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2031,2032,2033],{"name":2001,"color":2016},{"name":1985,"color":1986},{"name":2034,"color":2035},"pages","00DFB5",19928,"Emit \"navigation-complete\" event on NuxtLink","2024-06-30T11:09:10Z","https://github.com/nuxt/nuxt/issues/19928",0.7559527,{"description":2042,"labels":2043,"number":2050,"owner":1991,"repository":1991,"state":2051,"title":2052,"updated_at":2053,"url":2054,"score":2055},"### Describe the feature\n\nI've not managed to find an equivalent for https://nuxtjs.org/docs/features/live-preview/ in the Nuxt3 codebase and am wondering if there's similar functionality/plans to add them/a successor (potentially in a module)?\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [X] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://v3.nuxtjs.org/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/framework/discussions) and [issues](https://github.com/nuxt/framework/issues).",[2044,2045,2046,2049],{"name":2001,"color":2016},{"name":2018,"color":2019},{"name":2047,"color":2048},"3.x","29bc7f",{"name":2021,"color":2022},15639,"closed","Document successor of preview mode","2024-03-09T07:29:27Z","https://github.com/nuxt/nuxt/issues/15639",0.74043435,{"labels":2057,"number":2062,"owner":1991,"repository":1991,"state":2051,"title":2063,"updated_at":2064,"url":2065,"score":2066},[2058,2059],{"name":2001,"color":2016},{"name":2060,"color":2061},"2.x","d4c5f9",10299,"Layout options","2025-03-12T16:25:33Z","https://github.com/nuxt/nuxt/issues/10299",0.74075186,{"description":2068,"labels":2069,"number":2074,"owner":1991,"repository":1991,"state":2051,"title":2075,"updated_at":2076,"url":2077,"score":2078},"### Environment\n\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v18.18.2\r\n- Nuxt Version: 3.13.1\r\n- CLI Version: 3.13.1\r\n- Nitro Version: 2.9.7\r\n- Package Manager: yarn@4.4.1\r\n- Builder: -\r\n- User Config: future, srcDir, dir, components, alias, typescript, devtools, modules, routeRules, tailwindcss, postcss, compatibilityDate\r\n- Runtime Modules: @nuxtjs/tailwindcss@6.12.1, @nuxt/image@1.8.0, @nuxt/eslint@0.5.5, @nuxt/content@2.13.2\r\n- Build Modules: -\r\n------------------------------\n\n### Reproduction\n\nNot working hover events demo: nuxt@3.13.1 + vue@3.5.2\r\nhttps://stackblitz.com/edit/nuxt-vue-3-4-beta-squnun?file=src%2Fpages%2Fhome%2FHomePage.vue,src%2Fshared%2Fui%2Fthumb-carousel%2Fuse-thumb-carousel.ts\r\n\r\nWorking demo: nuxt@3.13.0 + vue@3.4.8\r\nhttps://stackblitz.com/edit/nuxt-vue-3-4-beta-uiqqjl?file=src%2Fpages%2Fhome%2FHomePage.vue,src%2Fshared%2Fui%2Fthumb-carousel%2Fuse-thumb-carousel.ts\r\n\r\nWorking non-nuxt demo: Vite(vike) + vue@3.5.2\r\nhttps://stackblitz.com/edit/dajced?file=pages%2Findex%2F%2BPage.vue,components%2Fthumb-carousel%2Fuse-thumb-carousel.ts\r\n\n\n### Describe the bug\n\n- Open non-working demo\r\n- Wait for the server to start up\r\n- Reload the page (1/twice)\r\n- Hover over the thumbs.\r\n- Navigation should work, but nothing happens, although the carousel itself is initialized\r\n\r\nIn working demos all works fine.\n\n### Additional context\n\nI don't understand what must have been changed in nuxt for my code to stop working.\r\nCan you look at the source code of the `useThumbCarousel` hook that links carousel initialization with expected behavior - maybe there is some part of the code there that causes problems? I'm thinking about watchers or refs.\n\n### Logs\n\n_No response_",[2070,2071],{"name":1988,"color":1989},{"name":2072,"color":2073},"possible regression","B90A42",28856,"Something broken with latest vue (3.5.2+) and latest nuxt (3.13.1)","2024-09-11T19:49:43Z","https://github.com/nuxt/nuxt/issues/28856",0.7448825,{"labels":2080,"number":2085,"owner":1991,"repository":1991,"state":2051,"title":2086,"updated_at":2087,"url":2088,"score":2089},[2081,2084],{"name":2082,"color":2083},"documentation","5319e7",{"name":2047,"color":2048},14613,"Document `\u003CNuxtWelcome />`","2023-01-19T17:37:54Z","https://github.com/nuxt/nuxt/issues/14613",0.7485749,{"description":2091,"labels":2092,"number":2096,"owner":1991,"repository":1991,"state":2051,"title":2097,"updated_at":2098,"url":2099,"score":2100},"## Details\r\n\r\nThere's enough here that is unique about Nuxt that I think it makes sense to have in our docs, and we can link out to Nitro where it makes sense\r\n\r\n_Originally posted by @danielroe in https://github.com/nuxt/nuxt/issues/21987#issuecomment-1624835848_\r\n ",[2093,2094,2095],{"name":2082,"color":2083},{"name":2018,"color":2019},{"name":2047,"color":2048},22011,"[Documentation Request] Prerender section","2024-06-10T18:45:11Z","https://github.com/nuxt/nuxt/issues/22011",0.74901444,{"description":2102,"labels":2103,"number":2106,"owner":1991,"repository":1991,"state":2051,"title":2107,"updated_at":2108,"url":2109,"score":2110},"### Describe the feature\n\nHello, I have been looking extensively in docs and cannot find the answer to the migration issue : how do you write global event listening on nuxt 3 ? here the syntax on nuxt2, on nuxt it produces the error this.$nuxt.$on is not a function\r\n```\r\n beforeMount() {\r\n this.$nuxt.$on ('wave-set-product-color', ( ) => {\r\n if(this.vActive1) this.vColor1=this.vActive1.$refs.waveColorChoiceModal.$data.color\r\n if(this.vActive2) this.vColor2=this.vActive2.$refs.waveColorChoiceModal.$data.color\r\n this.$store.commit('choix/setProduit1Color',this.vColor1)\r\n this.$store.commit('choix/setProduit2Color',this.vColor2)\r\n });\r\n },\r\n```\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://v3.nuxtjs.org/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/framework/discussions) and [issues](https://github.com/nuxt/framework/issues).",[2104,2105],{"name":2047,"color":2048},{"name":1988,"color":1989},15184,"migration from v2 to nuxt3 : this.$nuxt.$on is not a function","2023-01-19T17:45:57Z","https://github.com/nuxt/nuxt/issues/15184",0.74937063,["Reactive",2112],{},["Set"],["ShallowReactive",2115],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"1grfQkFwp2fvbQnNnMzAbVBtey2XdRoOfOlbAKO58yk":-1},"/nuxt/ui/2475"]