\n \u003C/NuxtLink>\n \u003C/ClientOnly>\n \u003C/template>\n\n \u003CCustomNavigationMenu :items=\"links\" variant=\"link\" />\n\n \u003Ctemplate #right>\n \u003CThemePicker />\n \u003C/template>\n\n \u003Ctemplate #body>\n \u003CCustomNavigationMenu\n orientation=\"vertical\"\n :items=\"links\"\n />\n \u003C/template>\n \u003C/CustomHeader>\n\u003C/template>\n```\n\nerrors:\n[Vue warn]: Failed to resolve component: UButton\nIf this is a native custom element, make sure to exclude it from component resolution via ...\n[Vue warn]: Failed to resolve component: UContainer\nIf this is a native custom element, make sure to exclude it from component resolution via ...\n[Vue warn]: Failed to resolve component: ULink\nIf this is a native custom element, make sure to exclude it from component resolution via ..\n\n### Description\n\nIf i'm setting a custom prefix in the `ui: {}` config object for the components the UHeader component is unable to resolve its nested components.\n\n### Additional context\n\nI think i've seen issues like this previously also posted, and maybe its some import that is missing.\n\n### Logs\n\n```shell-script\n\n```",[2971,2974,2975,2976],{"name":2972,"color":2973},"bug","d73a4a",{"name":2908,"color":2909},{"name":2947,"color":2948},{"name":2911,"color":2912},4371,"custom prefix not working when set with UHeader","2025-06-18T09:09:47Z","https://github.com/nuxt/ui/issues/4371",0.72064906,{"description":2983,"labels":2984,"number":2987,"owner":2914,"repository":2914,"state":2950,"title":2988,"updated_at":2989,"url":2990,"score":2991},"### Describe the feature\n\n`RouteNamedMap` from `#vue-router` have now all locale suffixes, and type checking not working in `localePath`. [Nuxt Typed Router](https://nuxt-typed-router.vercel.app/) already has i18n support.\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://nuxt.com/docs/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2985,2986],{"name":2958,"color":2959},{"name":2961,"color":2962},21048,"[experimental.typedPages] Support i18n","2024-07-15T13:07:41Z","https://github.com/nuxt/nuxt/issues/21048",0.72415394,{"labels":2993,"number":2997,"owner":2914,"repository":2914,"state":2950,"title":2998,"updated_at":2999,"url":3000,"score":3001},[2994],{"name":2995,"color":2996},"2.x","d4c5f9",5992,"How to use view-i18n to translate url parameters during route generation in nuxt.config","2023-01-18T22:32:51Z","https://github.com/nuxt/nuxt/issues/5992",0.72963315,{"description":3003,"labels":3004,"number":3007,"owner":2914,"repository":2914,"state":2950,"title":3008,"updated_at":3009,"url":3010,"score":3011},"### Environment\r\n\r\n- Operating System: Windows_NT\r\n- Node Version: v18.16.1\r\n- Nuxt Version: 3.6.3\r\n- Nitro Version: 2.5.2\r\n- Package Manager: npm@9.5.1\r\n- Builder: vite\r\n- User Config: ssr, runtimeConfig, app, components, css, plugins, i18n, modules, debug, build, vite\r\n- Runtime Modules: nuxt-icons@3.2.1, @pinia/nuxt@0.4.11, @nuxtjs/i18n@8.0.0-beta.13\r\n- Build Modules: -\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/github-uj38tj-wgrymt?file=pages%2Findex.vue,nuxt.config.ts,app.vue.bak\r\n\r\nRefresh page and you'll see\r\n\r\n### Describe the bug\r\n\r\nRefreshing page with NuxtLink inside NuxtLink is broken, every second element gets wrong classes and DOM broken.\r\nBut going with NuxtLink to /page1 (not refreshing) everytings works ok\r\n\r\n### Additional context\r\n\r\nI have a UI which have clickable card (card wrapped in link) and inside card should be a link\r\n\r\n### Logs\r\n\r\n",[3005,3006],{"name":2958,"color":2959},{"name":2961,"color":2962},22190,"Nuxt3 - NuxtLink inside NuxtLink broken","2023-07-18T09:04:05Z","https://github.com/nuxt/nuxt/issues/22190",0.7335504,{"description":3013,"labels":3014,"number":3016,"owner":2914,"repository":2914,"state":2950,"title":2998,"updated_at":3017,"url":3018,"score":3019},"I'm working on a multilingual website project for a real estate agency, I used the project below to make the translations everything works well, the last step is to translate the parameters of the dynamic urls during the route generation\r\n\r\nhttps://github.com/paulgv/nuxt-i18n-routing\r\n\r\nBut i do not know how to use view-i18n during route generation, can you help me ?\r\n\r\nHere is a code snippet that I would like to use :\r\n\r\n```\r\nimport Vue from 'vue'\r\nimport VueI18n from 'vue-i18n'\r\n\r\nimport { ROUTES_ALIASES, DEFAULT_LOCALE, I18N } from '~/config'\r\n\r\nVue.use(VueI18n)\r\n\r\nexport default ({ app, store }) => {\r\n\r\n\tapp.i18n = new VueI18n({\r\n \t// fallbackLocale: DEFAULT_LOCALE,\r\n \tmessages: I18N,\r\n lazy: true,\r\n langDir: 'lang/',\r\n parsePages: false,\r\n pages: ROUTES_ALIASES\r\n \t// silentTranslationWarn: true\r\n \t})\r\n \tapp.i18n.locale = store.state.i18n.currentLocale\r\n \r\n \tapp.i18n.path = (link) => {\r\n \t\tconsole.log(link)\r\n\t if (app.i18n.locale === app.i18n.fallbackLocale) {\r\n\t return `/${link}`;\r\n\t }\r\n\r\n return `/${app.i18n.locale}/${link}`;\r\n }\r\n}\r\n```\r\nI would like to call **app.i18n.t**('entitie.slug') into nuxt.config.js :\r\n\r\n```\r\ngenerate: {\r\n routes: function () {\r\n let results = axios.get(process.env.BASE_URL + '/entities')\r\n .then((response) => {\r\n return response.data.map((entitie) => {\r\n return {\r\n route: '/en/myurl/' + app.i18n.t(entitie.slug)\r\n }\r\n })\r\n })\r\n }\r\n}\r\n```\r\n- ❗️ All other issues - https://cmty.nuxtjs.org/ \r\n\r\nIf your issue was not created using the app above, **it will be closed immediately**.\r\n\r\n🚨 注意事项 🚨\r\n\r\n请务必使用下述链接来创建 issue:\r\n\r\n- 🚨 Bug 提交 - https://bug.nuxtjs.org/ \r\n- 🙋 新功能提案 - https://feature.nuxtjs.org/ \r\n- 🤔 寻求帮助 - https://otechie.com/nuxt \r\n- ❗️ 其他问题 - https://cmty.nuxtjs.org/ \r\n\r\n如果 issue 不是通过上述链接进行创建, **该 issue 会被系统自动关闭**\r\n-->\r\n\r\n\r\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\r\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://cmty.app/nuxt\">Nuxt\u003C/a> community (\u003Ca href=\"https://cmty.app/nuxt/nuxt.js/issues/c9420\">#c9420\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3015],{"name":2995,"color":2996},5991,"2023-01-18T20:30:26Z","https://github.com/nuxt/nuxt/issues/5991",0.73466367,{"description":3021,"labels":3022,"number":3026,"owner":2914,"repository":2914,"state":2950,"title":3027,"updated_at":3028,"url":3029,"score":3030},"### Describe the feature\n\nhey 👋\r\n\r\nrecently I came across a special case where I had to pass a component to child NuxtPage and figured out that NuxtPage does not seem to support passing vslot.\r\n\r\nHere is the documentation from Vue Router about that:\r\nhttps://router.vuejs.org/guide/advanced/router-view-slot\r\n\r\nSeems very useful functionality. Do you think it would be possible to support it with NuxtPage?\r\n\r\nCheers!\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).",[3023,3024,3025],{"name":2905,"color":2925},{"name":2958,"color":2959},{"name":2933,"color":2934},26998,"RouterView slot","2024-05-03T12:58:19Z","https://github.com/nuxt/nuxt/issues/26998",0.73531115,["Reactive",3032],{},["Set"],["ShallowReactive",3035],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f00vB46gs5iIWXupkMiuHxUevrYvhSd7a7rglx0Ab7ow":-1},"/nuxt/ui/2765"]