`\n\nit doesn't work that way\n\nI really ask for help!",[1984,1987],{"name":1985,"color":1986},"question","d876e3",{"name":1988,"color":1989},"v3","49DCB8",3098,"nuxt","ui","open","Table filtered, sorting fetch","2025-01-14T11:05:37Z","https://github.com/nuxt/ui/issues/3098",0.69560134,{"labels":1999,"number":2006,"owner":1991,"repository":1991,"state":2007,"title":2008,"updated_at":2009,"url":2010,"score":2011},[2000,2003],{"name":2001,"color":2002},"pending triage","E99695",{"name":2004,"color":2005},"2.x","d4c5f9",8281,"closed","\u003Cclient-only> causing component to render twice","2023-01-22T15:38:17Z","https://github.com/nuxt/nuxt/issues/8281",0.66039264,{"description":2013,"labels":2014,"number":2022,"owner":1991,"repository":1991,"state":2007,"title":2023,"updated_at":2024,"url":2025,"score":2026},"### Environment\n\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v18.13.0\r\n- Nuxt Version: 3.8.2\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.1\r\n- Package Manager: npm@8.19.3\r\n- Builder: -\r\n- User Config: -\r\n- Runtime Modules: -\r\n- Build Modules: -\r\n------------------------------\r\n\n\n### Reproduction\n\nI know this is a requirement for bug fixes, but I'm really stacked for time on an urgent project, and wanted to log this error in case anyone else is experiencing it and has a quick answer. or if its a known bug you can provide immediate answer to. When I get a chance I'll revert and try and set one up in the coming weeks.\n\n### Describe the bug\n\nSince installing a new package, and updating node to 18 from 16, I'm suddenly seeing loads of components that are not rendering. I also see the following errors in the console.\r\n\r\n```\r\nVue received a Component that was made a reactive object. This can lead to unnecessary performance overhead and should be avoided by marking the component with `markRaw` or using `shallowRef` instead of `ref`. \r\n```\r\nand\r\n```\r\n[Vue warn]: Component is missing template or render function. \r\n```\r\n\r\nI have tried deleting nuxt and node-modules folders and re-installing. I have discovered that simply changing the component file names works, but I of course can't do this for all of them as it would require lots of code changes. But it shows this is a weird error in the way the components are compiling. \n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2015,2018,2019],{"name":2016,"color":2017},"3.x","29bc7f",{"name":2001,"color":2002},{"name":2020,"color":2021},"needs reproduction","FBCA04",24751,"Since updating my package.json file, many of my unchanged components are suddenly failing to render","2023-12-30T11:46:37Z","https://github.com/nuxt/nuxt/issues/24751",0.67467606,{"description":2028,"labels":2029,"number":2033,"owner":1991,"repository":1991,"state":2007,"title":2034,"updated_at":2035,"url":2036,"score":2037},"### Environment\n\n------------------------------\r\n- Operating System: `Windows_NT`\r\n- Node Version: `v16.14.1`\r\n- Nuxt Version: `3.1.2`\r\n- Nitro Version: `2.2.1`\r\n- Package Manager: `npm@9.2.0`\r\n- Builder: `vite`\r\n- User Config: `modules`, `runtimeConfig`, `experimental`, `vite`, `ignore`, `app`, `vue`, `components`, `typescript`, `css`, `hooks`\r\n- Runtime Modules: `@pinia/nuxt@0.4.6`, `nuxt-vitest@0.6.6`\r\n- Build Modules: `-`\r\n------------------------------\n\n### Reproduction\n\nhttps://stackblitz.com/edit/github-9ukebr-bvynb9?file=nuxt.config.ts,app.vue,package.json\n\n### Describe the bug\n\nApp.vue and whole app renders twice on initial render, when u reload the whole page/server. That causes all the request through the whole app to launch at least twice or more. \r\nIt happens in the fresh nuxt app created by `npx nuxi init` as shown in reproduction link, so I think it's a bug inside nuxt3 itself.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2030,2031,2032],{"name":2016,"color":2017},{"name":2001,"color":2002},{"name":2020,"color":2021},19213,"Nuxt3 fresh project double render","2023-03-02T13:49:59Z","https://github.com/nuxt/nuxt/issues/19213",0.6762122,{"description":2039,"labels":2040,"number":2045,"owner":1991,"repository":1991,"state":2007,"title":2046,"updated_at":2047,"url":2048,"score":2049},"### Environment\n\n- Operating System: `Darwin`\r\n- Node Version: `v18.9.0`\r\n- Nuxt Version: `3.0.0-rc.11`\r\n- Nitro Version: `0.5.4`\r\n- Package Manager: `npm@8.19.1`\r\n- Builder: `vite`\r\n- User Config: `-`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\n\n### Reproduction\n\nThis is the config file used\r\n// https://v3.nuxtjs.org/api/configuration/nuxt.config\r\nexport default defineNuxtConfig({\r\n modules: ['@nuxtjs/color-mode', '@nuxtjs/tailwindcss'],\r\n colorMode: {\r\n classSuffix: ''\r\n },\r\n app: {\r\n head : {\r\n title: 'My App',\r\n titleTemplate: '%s - ExamGOAL Notes',\r\n script: [\r\n {\r\n src: '/mathjax.js',\r\n },\r\n {\r\n src: 'https://polyfill.io/v3/polyfill.min.js?features=es6',\r\n },\r\n {\r\n src: 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-svg.js'\r\n }\r\n ],\r\n link: [\r\n {\r\n rel: 'stylesheet',\r\n href: 'https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap'\r\n }\r\n ],\r\n noscript: [\r\n { children: 'Javascript is required' }\r\n ]\r\n }\r\n },\r\n})\r\n\n\n### Describe the bug\n\n\u003Ca href=\"https://ibb.co/xmh91xH\">\u003Cimg src=\"https://i.ibb.co/Q89SPyd/Screenshot-at-Sep-22-20-10-17.png\" alt=\"Screenshot-at-Sep-22-20-10-17\" border=\"0\">\u003C/a>\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2041,2042],{"name":2016,"color":2017},{"name":2043,"color":2044},"bug","d73a4a",15008,"Page head content are rendered two times ","2023-01-19T17:43:33Z","https://github.com/nuxt/nuxt/issues/15008",0.67764884,{"description":2051,"labels":2052,"number":2055,"owner":1991,"repository":1991,"state":2007,"title":2056,"updated_at":2057,"url":2058,"score":2059},"### Environment\n\nclean setup on stackblitz\r\n------------------------------\r\n- Operating System: Linux\r\n- Node Version: v16.14.2\r\n- Nuxt Version: 3.4.3\r\n- Nitro Version: 2.4.0\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/github-ketx95?file=app.vue\r\n\r\n1. Please open devtools, \r\n2. Click any product on the list \r\n3. Notice there is two console.logs 'render' with two different instances of the same component. Described results on the video below: \r\n\r\nhttps://github.com/nuxt/nuxt/assets/7935392/1b308d97-255d-435d-9d5b-439a2d049c1a\r\n\r\n\n\n### Describe the bug\n\n## Context\r\nWe use:\r\n+ dynamic page - `[...slug].vue`\r\n+ dynamic components - `component :is`\r\n\r\nScenario\r\n1. Fetch pageData on `[...slug].vue` by `useAsyncData`\r\n2. Render dynamic components based on `pageData`\r\n\r\n## A bug / a question? \r\nPlease click on some links in the product list (under \"Reproduction\").\r\nThe question is, why are components being rendered twice? This is causing unexpected bugs.\r\n\r\nhttps://github.com/nuxt/nuxt/assets/7935392/1b308d97-255d-435d-9d5b-439a2d049c1a\r\n\r\nWe could prevent the double rendering by adding a :key to NuxtPage, but this would cause the page components to rerender before asyncData is resolved, which could have some impact. In this example, when we add :key, the components are only rendered once, but the page component is empty and does not wait for asyncData to render.\r\n\r\nhttps://github.com/nuxt/nuxt/assets/7935392/f546fea4-3d03-41bb-b083-cc068a85bd50\r\n\r\nHow to prevent the effect of double rendering?\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2053,2054],{"name":2016,"color":2017},{"name":2001,"color":2002},20848,"Components are rendered twice (\u003Ccomponent :is> on [...slug].vue) ","2024-05-25T19:30:19Z","https://github.com/nuxt/nuxt/issues/20848",0.6787392,{"labels":2061,"number":2067,"owner":1991,"repository":1991,"state":2007,"title":2068,"updated_at":2009,"url":2069,"score":2070},[2062,2065,2066],{"name":2063,"color":2064},"stale","ffffff",{"name":2001,"color":2002},{"name":2004,"color":2005},8150,"async fetch() breaks v-for in child component","https://github.com/nuxt/nuxt/issues/8150",0.67886,{"labels":2072,"number":2076,"owner":1991,"repository":1991,"state":2007,"title":2077,"updated_at":2078,"url":2079,"score":2080},[2073,2074,2075],{"name":2063,"color":2064},{"name":2001,"color":2002},{"name":2004,"color":2005},10129,"SSR doesn't render `v-else` component after component with `v-html`","2023-01-22T15:45:12Z","https://github.com/nuxt/nuxt/issues/10129",0.6802042,{"description":2082,"labels":2083,"number":2086,"owner":1991,"repository":1991,"state":2007,"title":2087,"updated_at":2088,"url":2089,"score":2090},"### Environment\n\n- Operating System: `Windows_NT`\r\n- Node Version: `v16.19.0`\r\n- Nuxt Version: `3.3.3`\r\n- Nitro Version: `2.3.2`\r\n- Package Manager: `npm@8.19.3`\r\n- Builder: `vite`\r\n- User Config: `runtimeConfig`, `imports`, `vite`, `postcss`, `modules`, `ssr`, `app`\r\n- Runtime Modules: `@pinia/nuxt@0.4.8`, `@element-plus/nuxt@1.0.4`\r\n- Build Modules: `-`\r\n\n\n### Reproduction\n\ncan not provide\n\n### Describe the bug\n\nNuxt configures ssr to true, and then uses the project generated by nuxi generate. After the first screen is loaded, it is normal to navigate to the second-level or third-level page through routing. If you refresh the browser page, this time will cause Vue in the single-file component. The template template structure is inconsistent (the top-level class of the template in the component is inexplicably gone, and then the css variables and styles defined by other pages appear.).\r\nMay I ask how this is caused? How to solve it effectively?\r\nCurrently, client-only is used for all pages in app.vue to display normally.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2084,2085],{"name":2016,"color":2017},{"name":2001,"color":2002},20462,"Using the project generated by nuxi generate to refresh the template structure error problem twice","2023-04-25T05:49:03Z","https://github.com/nuxt/nuxt/issues/20462",0.68260956,{"description":2092,"labels":2093,"number":2095,"owner":1991,"repository":1992,"state":2007,"title":2096,"updated_at":2097,"url":2098,"score":2099},"### Description\r\n\r\nis there an intellisense / autocomplete options for NuxtUI components? i dont see any tooltip thing here when i type...\r\n\r\n",[2094],{"name":1985,"color":1986},2177,"is there no INTELLISENSE / AUTO COMPLETE for typing?","2024-11-12T09:28:56Z","https://github.com/nuxt/ui/issues/2177",0.6845965,["Reactive",2101],{},["Set"],["ShallowReactive",2104],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"9edC9SiS8MPF2zyE_Kfh1rZ1w5Rhtci2TgjV92TDCoc":-1},"/nuxt/nuxt.com/1261"]