\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2029,2032,2035],{"name":2030,"color":2031},"documentation","5319e7",{"name":2033,"color":2034},"good first issue","fbca04",{"name":2013,"color":2014},30325,"VS Code autocomplete imports from `#build/components` instead of `#components`","2025-01-10T13:37:47Z","https://github.com/nuxt/nuxt/issues/30325",0.6649361,{"description":2042,"labels":2043,"number":2051,"owner":1991,"repository":1991,"state":1992,"title":2052,"updated_at":2053,"url":2054,"score":2055},"### Environment\n\nRootDir: /Users/wanghaohao/cobazaar/h-mall-nuxt3 17:21:12\r\nNuxt project info: (copied to clipboard) 17:21:12\r\n\r\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v18.16.0\r\n- Nuxt Version: 3.6.5\r\n- Nitro Version: 2.5.2\r\n- Package Manager: yarn@1.22.19\r\n- Builder: vite\r\n- User Config: app, components, runtimeConfig, modules, pinia, vite, css, alias, experimental\r\n- Runtime Modules: @pinia/nuxt@0.4.11, nuxt-icon@0.4.2\r\n- Build Modules: -\n\n### Reproduction\n\n```js\r\n\u003Cdiv v-for=\"(item, index) in recommend\" :key=\"index\">\r\n\t\t\t\u003C!-- 类型(0=供应商,1=品牌,2=商品) -->\r\n\t\t\t\u003Ccomponent\r\n\t\t\t\t:is=\"['SupplierRecommend', 'BrandRecommend', 'ProductRecommend'][Number(item.bizType)]\"\r\n\t\t\t\t:data=\"item\"\r\n\t\t\t\t:display-style=\"item.displayStyle\"\r\n\t\t\t>\u003C/component>\r\n\u003C/div>\r\n\r\n\u003CClientOnly>\r\n\t\t\t\u003Cel-dialog v-model=\"adDialogVisible\" width=\"800\">\r\n\t\t\t\t\u003Cnuxt-link :to=\"adConfig.homepagePopup.imageLink\">\r\n\t\t\t\t\t\u003Cimg :src=\"adConfig.homepagePopup.imageUri\" alt=\"\" class=\"homepagePopup\" />\r\n\t\t\t\t\u003C/nuxt-link>\r\n\t\t\t\u003C/el-dialog>\r\n\t\t\u003C/ClientOnly>\r\n```\n\n### Describe the bug\n\n打包后PM2启动后出现同一组件渲染两次的情况,我尝试删除Element的el-dialog 可以解决这个问题,但是我需要这个弹窗\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2044,2045,2046,2048],{"name":1985,"color":1986},{"name":2002,"color":2003},{"name":2047,"color":2020},"needs reproduction",{"name":2049,"color":2050},"closed-by-bot","ededed",22458,"打包后PM2启动后出现同一组件渲染两次的情况","2023-08-13T01:47:25Z","https://github.com/nuxt/nuxt/issues/22458",0.66859144,{"description":2057,"labels":2058,"number":2061,"owner":1991,"repository":1991,"state":1992,"title":2062,"updated_at":2063,"url":2064,"score":2065},"### Environment\n\n- Operating System: Windows_NT\r\n- Node Version: v16.20.0\r\n- Nuxt Version: 3.5.1\r\n- Nitro Version: 2.4.1\r\n- Package Manager: yarn@1.22.19\r\n- Builder: vite\r\n- User Config: publicRuntimeConfig, debug, crossOriginPrefetch, meta, css, typescript, modules, vueuse, elementPlus, localtunnel, devtools, runtimeConfig, postcss, vite\r\n- Runtime Modules: @pinia/nuxt@0.4.11, @vueuse/nuxt@10.1.2, nuxt-svgo@3.1.0, nuxt-swiper@1.1.0, nuxt-lodash@2.4.1, @nuxtus/nuxt-localtunnel@1.0.1, @element-plus/nuxt@1.0.5\n\n### Reproduction\n\n1\n\n### Describe the bug\n\n开启页面过渡时 来回切换路由 element-plus 的 v-infinite-scroll \r\n\r\n\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2059,2060],{"name":1985,"color":1986},{"name":2002,"color":2003},21018,"element-plus","2023-05-23T10:49:08Z","https://github.com/nuxt/nuxt/issues/21018",0.6699693,{"description":2067,"labels":2068,"number":2071,"owner":1991,"repository":1991,"state":1992,"title":2072,"updated_at":2073,"url":2074,"score":2075},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v18.16.0`\r\n- Nuxt Version: `3.6.1`\r\n- Nitro Version: `2.5.2`\r\n- Package Manager: `pnpm@8.3.1`\r\n- Builder: `vite`\r\n- User Config: `extends`, `devtools`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n\r\n\r\n### Reproduction\r\n\r\nImpossible to reproduce online due to the nature of CodeSandbox/StackBlitz.\r\nNeed to run the project in VS Code w/ Volar.\r\n\r\n### Describe the bug\r\n\r\nWhen extending a Nuxt layer that's a npm package with a component inside of it, I don't get any type completion for props.\r\n\r\nI do, in fact, have everything working fine If I extend the layer in the `.playground` folder directly inside the same project.\r\nLet's say I create a simple `MyButton` component that accepts a `variant` prop that could be `\"solid\"` or `\"ghost\"`: I get `variant` autocompleted then it suggests `solid` or `ghost` as possible values.\r\n\r\nNow, If I install the package and extend it in `nuxt.config.ts` and try to replicate this behavior, it doesn't work. Component works fine though. \r\n\r\nPlugins I provide are working fine. Example: `$toast` is suggested, the `success` property pops up if I try `$toast.s` and I get every available hint inside of it. Same thing for composables (custom one or imported from layer dependencies).\r\n\r\nIs it a Volar issue? Should I do something in my `tsconfig` file?\r\nI tried with my work project layer as well as other random layers available on npmjs and got the same outcome.\r\n\r\n### Additional context\r\n\r\nVS Code 1.79.2 w/ Volar 1.8.3.\r\n\r\n### Logs\r\n\r\n_No response_",[2069,2070],{"name":1985,"color":1986},{"name":2002,"color":2003},21877,"No type completion support for components in a Nuxt layer","2023-07-04T08:00:32Z","https://github.com/nuxt/nuxt/issues/21877",0.67276686,{"labels":2077,"number":2080,"owner":1991,"repository":1991,"state":1992,"title":2081,"updated_at":2082,"url":2083,"score":2084},[2078,2079],{"name":1985,"color":1986},{"name":2002,"color":2003},13606,"Component not loading more after change page.","2023-01-19T17:02:43Z","https://github.com/nuxt/nuxt/issues/13606",0.67470133,{"labels":2086,"number":2090,"owner":1991,"repository":1991,"state":1992,"title":2091,"updated_at":2092,"url":2093,"score":2094},[2087,2088,2089],{"name":1985,"color":1986},{"name":2002,"color":2003},{"name":2047,"color":2020},13242,"Components cannot be registered by Vue plugins","2023-01-19T16:49:12Z","https://github.com/nuxt/nuxt/issues/13242",0.6748295,{"description":2096,"labels":2097,"number":2101,"owner":1991,"repository":1991,"state":1992,"title":2102,"updated_at":2103,"url":2104,"score":2105},"### Environment\n\n- Operating System: Darwin\r\n- Node Version: v18.14.1\r\n- Nuxt Version: 3.4.0\r\n- Nitro Version: 2.3.3\r\n- Package Manager: npm@9.3.1\r\n- Builder: vite\r\n- User Config: modules, runtimeConfig, css, build, vite\r\n- Runtime Modules: @pinia/nuxt@0.4.9\r\n- Build Modules: -\n\n### Reproduction\n\n\r\n\u003Cimg width=\"1462\" alt=\"image\" src=\"https://github.com/nuxt/nuxt/assets/52020723/c84e8e29-3d44-424f-82ca-4cf71a1feef0\">\r\n\r\n\n\n### Describe the bug\n\nIt seems that the a-carousel component has not been properly parsed on the server. I attempted to configure nuxt.config \r\n\r\nbuild:{\r\ntranspile: [/ant-design/],\r\n}\r\n\r\nStill useless\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2098,2099,2100],{"name":1985,"color":1986},{"name":2002,"color":2003},{"name":2047,"color":2020},20966,"antdv [Vue warn]: Hydration node mismatch","2023-10-20T10:56:25Z","https://github.com/nuxt/nuxt/issues/20966",0.6758783,["Reactive",2107],{},["Set"],["ShallowReactive",2110],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"_jmnOuxAFfJ0bs3muxw7pvFIfwMd4wStCfa4GMGUwLk":-1},"/nuxt/nuxt/24061"]