\r\n \u003CNuxt />\r\n \u003CFooter/>\r\n \u003C/div>\r\n\u003C/template>\r\n\r\n\u003Cscript>\r\nimport Footer from \"~/components/Footer\";\r\nimport Header from \"~/components/Header\";\r\n\r\nexport default {\r\n components: {\r\n Footer,\r\n Header\r\n }\r\n}\r\n\u003C/script>\r\n\r\n\u003Cstyle>\r\n body {\r\n margin: 0;\r\n }\r\n\u003C/style>\r\n```\r\n\r\n\r\n \"@nuxt/typescript-runtime\": \"^2.0.0\",\r\n \"@nuxtjs/axios\": \"^5.12.5\",\r\n \"@storefront-ui/vue\": \"^0.9.1\",\r\n \"axios\": \"^0.21.1\",\r\n \"core-js\": \"^3.6.5\",\r\n \"js-cookie\": \"^2.2.1\",\r\n \"nuxt\": \"^2.14.6\"",[2891,2894],{"name":2892,"color":2893},"pending triage","E99695",{"name":2895,"color":2896},"2.x","d4c5f9",8643,"closed","Unknown custom element: \u003CSfHeader> - did you register the component correctly?","2023-01-22T15:38:40Z","https://github.com/nuxt/nuxt/issues/8643",0.61838377,{"description":2904,"labels":2905,"number":2907,"owner":2882,"repository":2882,"state":2898,"title":2908,"updated_at":2909,"url":2910,"score":2911},"Hello I am trying to convert my existing Vuejs app into nuxt.js.\r\n\r\nI am using buidcons and those are working in vuejs but with nuxtjs I am getting this error\r\n\r\n[Vue warn]: Unknown custom element: \u003Cbi> - did you register the component correctly? For recursive components, make sure to provide the \"name\" option.\r\n\r\nHere is my code\r\n\r\n```\r\n\u003Cnuxt-link to=\"/newuser\" @click=\"leftmenu\" class=\"head\">\r\n \u003Cbi class=\"budicon-cloud-download\"> \u003C/bi>\r\n\u003C/nuxt-link>\r\n```\r\nThis is my buidcons.css file\r\n\r\n```\r\n@font-face {\r\n font-family: 'budicon-classic';\r\n src: url('/static/fonts/Budicons/budicon-classic.eot?jdete2');\r\n src: url('/static/fonts/Budicons/budicon-classic.eot?jdete2#iefix') format('embedded-opentype'),\r\n url('/static/fonts/Budicons/budicon-classic.ttf?jdete2') format('truetype'),\r\n url('/static/fonts/Budicons/budicon-classic.woff?jdete2') format('woff'),\r\n url('/static/fonts/Budicons/budicon-classic.svg?jdete2#budicon-classic') format('svg');\r\n font-weight: normal;\r\n font-style: normal;\r\n}\r\n\r\nbi {\r\n font-family: 'budicon-classic' !important;\r\n font-style: normal;\r\n font-weight: 400;\r\n font-variant: normal;\r\n text-transform: none;\r\n margin-right: 4px;\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n}\r\n```\r\n\r\nWould you please help me how I can solve this\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2504\">#c2504\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2906],{"name":2895,"color":2896},2877,"Unknown custom element","2023-01-18T16:09:43Z","https://github.com/nuxt/nuxt/issues/2877",0.6349195,{"description":2913,"labels":2914,"number":2919,"owner":2882,"repository":2882,"state":2898,"title":2920,"updated_at":2921,"url":2922,"score":2923},"### Environment\r\n\r\n- Operating System: Linux\r\n- Node Version: v18.18.0\r\n- Nuxt Version: 3.8.2\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.0\r\n- Package Manager: npm@9.4.2\r\n- Builder: -\r\n- User Config: devtools\r\n- Runtime Modules: -\r\n- Build Modules: -\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/nuxt-starter-4byrfr?file=modules%2Fcode-block.ts,app.vue\r\n\r\n### Describe the bug\r\n\r\nI have installed a vue component from NPM鈥痑nd created a nuxt module for it:\r\n\r\n```javascript\r\nimport { defineNuxtModule, addComponent } from '@nuxt/kit'\r\n\r\nexport default defineNuxtModule({\r\n setup() {\r\n addComponent({\r\n name: 'VCodeBlock',\r\n export: 'VCodeBlock',\r\n filePath: '@wdns/vue-code-block',\r\n mode: \"client\",\r\n })\r\n },\r\n})\r\n```\r\n\r\nHowever, despite `mode: \"client\"` whenever I put it in a nuxt page, layout or component I still get an ssr related issue\r\n\r\n```\r\nIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.\r\n[Vue warn]: Component \u003CAnonymous> is missing template or render function.\r\n```\r\nI also have the same error if I just import the component without using nuxt modules \r\nIf I completely disable SSR, it works fine. \r\n\r\nIf I鈥痳emove mode client, it's worse : it says window is undefined\r\n\r\nI would assume the problem is that the module is client side... but the component 鈥痷se it in isn't, therefore it's rendered before it should. \r\n\r\nIt does feel like a bug however because you'd assume mode client would work. What does `mode:client` do exactly ? \r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n```shell-script\r\nIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.\r\n[Vue warn]: Component \u003CAnonymous> is missing template or render function.\r\n```\r\n",[2915,2918],{"name":2916,"color":2917},"3.x","29bc7f",{"name":2892,"color":2893},24478,"node_modules component in nuxt modules : I still get SSR related errors despite `mode:client`","2023-11-28T23:34:19Z","https://github.com/nuxt/nuxt/issues/24478",0.66955537,{"description":2925,"labels":2926,"number":2928,"owner":2882,"repository":2882,"state":2898,"title":2929,"updated_at":2930,"url":2931,"score":2932},"The problem that im facing has to do with nuxt-link and nuxt-view. As far as i've used vuejs i remember that if you put router-link and down below you put a router-view it will render everything with navigation bar if its there. However with nuxt i put nuxt-link (or router-link for testing) and below i put nuxt-view (or router-view for testing) it redirects me to another page but the navigation bar dissapears. At first i was told that i might need to use layout instead of components but its pretty much the same result. Here is the code:\r\n\r\n \r\n \u003Ctemplate>\r\n \u003Cdiv id=\"\">\r\n \u003Cnuxt-link :to='{name: \"terms-sections-test1\"}'>Go to 1 \u003C/nuxt-link>\r\n \u003Cnuxt-link to='/terms/sections/test2'>Go to 2 \u003C/nuxt-link>\r\n \u003Crouter-link to='terms/sections/test1'>ROUTER LINK\u003C/router-link>\r\n\r\n\r\n \u003Cnuxt-view> \u003C/nuxt-view>\r\n \u003Crouter-view >\u003C/router-view>\r\n\r\n\r\n\r\n \u003C/div>\r\n \u003C/template>\r\n \u003Cscript>\r\n export default {\r\n /* eslint-disable */\r\n layout: 'navigation'\r\n\r\n }\r\n \u003C/script>\r\n \u003Cstyle lang=\"css\" scoped>\r\n \u003C/style>\r\n\r\nIs there a work around so that i dont have to include layout everytime in its children components? or i need to include them everywhere? sorry for the noob question but i cant really see good documentation for nuxt-view.\r\n\r\nP.S: everytime when i press on my first nuxt-link it redirects me to the page but when i go back to initial page (the code above) it gives me this warning:\r\n\r\n [Vue warn]: Unknown custom element: \u003Cnuxt-view> - did you register the component correctly? For \r\n recursive components, make sure to provide the \"name\" option.\r\n\r\nPlease help :)\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c977\">#c977\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2927],{"name":2895,"color":2896},1116,"Nuxt-view with nuxt-link","2023-01-18T15:40:45Z","https://github.com/nuxt/nuxt/issues/1116",0.6698657,{"description":2934,"labels":2935,"number":2938,"owner":2882,"repository":2882,"state":2898,"title":2939,"updated_at":2940,"url":2941,"score":2942},"### Environment\n\n------------------------------\r\n- Operating System: Linux\r\n- Node Version: v18.18.0\r\n- Nuxt Version: 3.9.0\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.1\r\n- Package Manager: npm@9.4.2\r\n- Builder: -\r\n- User Config: -\r\n- Runtime Modules: -\r\n- Build Modules: -\r\n------------------------------\n\n### Reproduction\n\n[StackBlitz](https://stackblitz.com/edit/nuxt-examples-7qpsts?file=pages%2Findex.vue) reproduction\n\n### Describe the bug\n\n[Vue Router warn]: No match found for location with path \"/assets/sprite/gen/svg-symbols.svg/\" in console\r\n\r\nUISvgIcon component that draw icon as svg sprite but after update version of nuxt it's broken. it looks like nuxt doesn't recognize this as a link because other files in the root are opening correctly.\r\n\r\nthis worked until the nuxt version 3.8.2\n\n### Additional context\n\nI'm sorry, I have one more question. After update appeared warn: \r\n`[nuxt] Your project has layouts but the `\u003CNuxtLayout />` component has not been used.`\r\n\r\nthis is also in the same stackblitz. Layout works fine.\r\nExplain me please is this way to do layouts is worng and i have to use App.vue ?\n\n### Logs\n\n_No response_",[2936,2937],{"name":2916,"color":2917},{"name":2892,"color":2893},25005,"Href use svg symbol","2024-01-02T14:01:38Z","https://github.com/nuxt/nuxt/issues/25005",0.67204577,{"description":2944,"labels":2945,"number":2948,"owner":2882,"repository":2882,"state":2898,"title":2949,"updated_at":2950,"url":2951,"score":2952},"### Environment\n\nNuxi 3.2.2 \r\n------------------------------\r\n- Operating System: `Windows_NT`\r\n- Node Version: `v18.14.1`\r\n- Nuxt Version: `3.2.2`\r\n- Nitro Version: `2.2.3`\r\n- Package Manager: `npm@9.3.1`\r\n- Builder: `vite`\r\n- User Config: `components`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n------------------------------\n\n### Reproduction\n\nReproduce Link: https://stackblitz.com/edit/github-tznxrd\r\n\r\n1. npx nuxi init demo\r\n2. cd demo\r\n3. npm install\r\n4. mkdir -p components/layouts\r\n5. edit nuxt.config.ts\r\n **nuxt.config.ts**\r\n ```\r\n export default defineNuxtConfig({\r\n components: [\r\n { path: '~/components/layouts', prefix: 'Special' },\r\n '~/components'\r\n ]\r\n })\r\n ```\r\n\r\n\r\n6. create **header.vue** under components/layouts\r\n ```\r\n \u003Ctemplate>\r\n \u003Cdiv>\r\n Header\r\n \u003C/div>\r\n \u003C/template>\r\n ```\r\n\r\n7. import header.vue in **app.vue**\r\n ```\r\n \u003Ctemplate>\r\n \u003Cdiv>\r\n \u003CHeader />\r\n \u003CNuxtWelcome />\r\n \u003C/div>\r\n \u003C/template>\r\n \r\n \u003Cscript>\r\n import Header from '~/components/layouts/header.vue';\r\n \u003C/script>\r\n ```\r\n\r\n\r\n8. npm run dev\r\n\n\n### Describe the bug\n\n[Vue warn]: Failed to resolve component: Header\r\nIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. \n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2946,2947],{"name":2916,"color":2917},{"name":2892,"color":2893},19310,"If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.","2023-02-27T12:15:17Z","https://github.com/nuxt/nuxt/issues/19310",0.6721257,{"description":2954,"labels":2955,"number":2957,"owner":2882,"repository":2882,"state":2898,"title":2958,"updated_at":2909,"url":2959,"score":2960},"I'm using [ElemeFE/Element](https://github.com/ElemeFE/element), I set it up in a plugin as follow:\r\n\r\n```js\r\nimport Vue from 'vue';\r\nimport ElementUI from 'element-ui';\r\nimport lang from 'element-ui/lib/locale/lang/en';\r\nimport locale from 'element-ui/lib/locale';\r\nimport '../theme/index.css';\r\n\r\nlocale.use(lang);\r\nVue.use(ElementUI);\r\n```\r\n\r\nI receive network errors:\r\n\r\n\r\nWith console errors:\r\n`GET http://localhost:3000/_nuxt/fonts%0Element-icons.6f0a763.ttf net::ERR_ABORTED`\r\n\r\nCurrently under **Nuxt v1.3.0**\r\nI think the error might come from nuxt webpack config.\r\n\r\n---\r\n\r\n**File `_nuxt/vendor.js` contains:**\r\n\r\n```js\r\n/***/ \"./node_modules/element-ui/lib/theme-chalk/fonts/element-icons.ttf\":\r\n/***/ (function(module, exports, __webpack_require__) {\r\n\r\nmodule.exports = __webpack_require__.p + \"fonts\\\\element-icons.6f0a763.ttf\";\r\n\r\n/***/ }),\r\n```\r\n\r\n**File `_nuxt/app.js` contains:**\r\n```js\r\n/***/ \"./theme/fonts/element-icons.ttf?t=1510834658947\":\r\n/***/ (function(module, exports, __webpack_require__) {\r\n\r\nmodule.exports = __webpack_require__.p + \"fonts\\\\element-icons.6f0a763.ttf\";\r\n\r\n/***/ }),\r\n```\r\n\r\nDoes the problem come from `\\\\e` that turns into `%0E`?\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2493\">#c2493\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2956],{"name":2895,"color":2896},2869,"404 ResourceNotFound (ttf, woff, svg)","https://github.com/nuxt/nuxt/issues/2869",0.6762713,{"description":2962,"labels":2963,"number":2970,"owner":2882,"repository":2882,"state":2898,"title":2971,"updated_at":2972,"url":2973,"score":2974},"### Environment\n\n- Operating System: Linux\r\n- Node Version: v16.14.2\r\n- Nuxt Version: 3.5.0\r\n- Nitro Version: 2.4.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: -\n\n### Reproduction\n\nhttps://stackblitz.com/edit/github-jblieu-fynag4\n\n### Describe the bug\n\nNuxt can no longer resolve a component if its name starts with its containing folder's name, ex:\r\n\r\ncomponent path: `components/Icon/Icones`\r\n\r\napp.vue:\r\n```vue\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003CIconIcones />\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\nconsole output:\r\n```sh\r\n[Vue warn]: Failed to resolve component: IconIcones 21:27:18\r\nIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.\r\n```\n\n### Additional context\n\nThe above example works in Nuxt 3.4.x\n\n### Logs\n\n_No response_",[2964,2965,2968],{"name":2916,"color":2917},{"name":2966,"color":2967},"bug","d73a4a",{"name":2969,"color":2880},"馃敤 p3-minor",20937,"Regression: Cannot resolve component if its folder's name is a prefix of the component's name","2023-05-19T11:23:25Z","https://github.com/nuxt/nuxt/issues/20937",0.6806137,{"description":2976,"labels":2977,"number":2980,"owner":2882,"repository":2882,"state":2898,"title":2981,"updated_at":2982,"url":2983,"score":2984},"### Environment\n\nnuxt 3 rc12\r\nwin10\n\n### Reproduction\n\nIf i put project in one dir it work, if move to other not work. Always something not work.\n\n### Describe the bug\n\nruntime-core.esm-bundler.js:38 [Vue warn]: Failed to resolve component: nuxt-child\r\nIf this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. \n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell\nruntime-core.esm-bundler.js:38 [Vue warn]: Hydration node mismatch:\r\n- Client vnode: nuxt-child \r\n- Server rendered DOM: \u003C!----> \r\n at \u003CQuality onVnodeUnmounted=fn\u003ConVnodeUnmounted> ref=Ref\u003C undefined > > \r\n at \u003CAnonymous key=\"/quality\" routeProps= Object pageKey=\"/quality\" ... > \r\n at \u003CBaseTransition mode=\"out-in\" appear=false persisted=false ... > \r\n at \u003CTransition name=\"page\" mode=\"out-in\" > \r\n at \u003CRouterView name=undefined route=undefined > \r\n at \u003CNuxtPage> \r\n at \u003CLayoutContent class=\"layoutContent py-0 bg-[#f8f8f8]\" > \r\n at \u003CLayout class=\"w-[100%] bg-[#f8f8f8]\" > \r\n at \u003CLayout class=\"flex h-[100%]\" has-sider=\"\" > \r\n at \u003CDefault > \r\n at \u003CAnonymous key=\"default\" name=\"default\" hasTransition=true > \r\n at \u003CBaseTransition mode=\"out-in\" appear=false persisted=false ... > \r\n at \u003CTransition name=\"layout\" mode=\"out-in\" > \r\n at \u003CAnonymous> \r\n at \u003CConfigProvider inline-theme-disabled=\"\" theme-overrides= Object locale= Object ... > \r\n at \u003CMessageProvider> \r\n at \u003CDialogProvider> \r\n at \u003CApp key=1 > \r\n at \u003CNuxtRoot>\n```\n",[2978,2979],{"name":2916,"color":2917},{"name":2892,"color":2893},15309,"runtime-core.esm-bundler.js:38 [Vue warn]: Failed to resolve component: nuxt-child If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement. ","2023-01-19T17:48:01Z","https://github.com/nuxt/nuxt/issues/15309",0.6827632,["Reactive",2986],{},["Set"],["ShallowReactive",2989],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fBE0Suk51jico_0x9MTw42jonyzhzg0LglrpM92aQ-nc":-1},"/nuxt/icon/74"]