\r\n \u003C/div>\r\n\u003C/template>\r\n\r\n````\r\n\r\nDashboardIndex is in the `components/Dashboard/Index.vue`\r\n\r\n````\r\n\r\n\u003Cscript lang=\"ts\">\r\nexport default {\r\n name: \"DashboardIndex\" \r\n};\r\n\u003C/script>\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n Index\r\n \u003C/div>\r\n\u003C/template>\r\n````\r\n\r\n\r\n### Describe the bug\r\n\r\nI am trying to automatically import a component but for some reason nuxt can't find it.\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[2917,2918],{"name":2884,"color":2885},{"name":2853,"color":2854},12388,"[Vue warn]: Failed to resolve component.","2023-01-19T16:18:49Z","https://github.com/nuxt/nuxt/issues/12388",0.7022856,{"labels":2925,"number":2931,"owner":2856,"repository":2856,"state":2888,"title":2932,"updated_at":2933,"url":2934,"score":2935},[2926,2927,2928],{"name":2884,"color":2885},{"name":2866,"color":2867},{"name":2929,"color":2930},"components","05B979",13190,"@ alias does not work on Nuxt 3 + Components","2023-01-19T16:49:20Z","https://github.com/nuxt/nuxt/issues/13190",0.70244306,{"description":2937,"labels":2938,"number":2947,"owner":2856,"repository":2856,"state":2888,"title":2948,"updated_at":2949,"url":2950,"score":2951},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v18.18.2`\r\n- Nuxt Version: `3.11.1`\r\n- CLI Version: `3.11.0`\r\n- Nitro Version: `2.9.4`\r\n- Package Manager: `yarn@1.22.19`\r\n- Builder: `-`\r\n- User Config: `ssr`, `pages`, `debug`, `typescript`, `modules`, `devtools`, `runtimeConfig`, `colorMode`, `tailwindcss`, `purgecss`, `eslint`, `i18n`\r\n- Runtime Modules: `@nuxtjs/tailwindcss@6.11.4`, `nuxt-purgecss@2.0.0`, `nuxt-headlessui@1.1.5`, `@nuxtjs/i18n@8.2.0`, `@nuxtjs/color-mode@3.3.3`, `nuxt-icon@0.6.9`, `@nuxt/image@1.4.0`, `@nuxt/content@2.12.1`, `vue3-carousel-nuxt@1.1.0`, `@nuxtjs/device@3.1.1`\r\n- Build Modules: `-`\r\n\r\n\r\n### Reproduction\r\n\r\n- Start nuxt app using yarn dev (SSR mode)\r\n- Manually/directly browse to a page (using url) **(1)**\r\n- Navigating to another page through a NuxtLink element **(2)**\r\n- Navigating back to the initial page through a NuxtLink element **(3)**\r\n\r\n### Describe the bug\r\n\r\nWhen the page at **(1)** is opened, everything is rendered correctly. After browsing to another page **(2)** and then back to the initial page **(3)** the initial page no longer has any content (like the previous state disappeared). The content/state is visible in the nuxt devtool widget, yet it is not rendered, and the client reports that the data object in the initial page **(1)** is undefined. No errors / warning / debugging messages are shown anywhere (neither in the client or the server).\r\n\r\n### Additional context\r\n\r\nThe data object in the page described at **(1)** looks like this:\r\n```\r\nlet categories = await findAll\u003CICategory>('categories', {\r\n locale: languageToLocale(locale.value),\r\n populate: '*',\r\n requestKey: 'static-content-categories',\r\n});\r\n```\r\n\r\nThe object is then used in the `\u003Ctemplate>` block to display some fields, using plain elements.\r\n\r\nThe findAll() function simply calls function queryApi() that internally uses useAsyncData(). The findAll/queryApi functions are part of a custom composable (added under composables/ directory).\r\n\r\n```\r\nasync function queryApi (entity: string, requestParams: IApiRequestParams) {\r\n const {\r\n data,\r\n pending\r\n } = await useAsyncData\u003CIApiResponse>(\r\n requestParams.requestKey,\r\n async () => $fetch(makeApiEndpointQueryUrl(entity, requestParams), {\r\n method: 'GET',\r\n headers: {\r\n 'Content-Type': 'application/json',\r\n 'Accept': 'application/json',\r\n },\r\n })\r\n );\r\n\r\n return {\r\n data: data.value?.data ?? undefined,\r\n meta: data.value?.meta ?? undefined,\r\n };\r\n }\r\n```\r\n\r\nAdditional methods used in queryApi (part of the same composable):\r\n\r\n ```\r\nfunction makeApiEndpointUrl (entity: string): string {\r\n return useRuntimeConfig().api.url + '/api/' + entity;\r\n }\r\n\r\n function makeApiEndpointQueryUrl (entity: string, requestParams: IApiRequestParams): string {\r\n let query = qs.stringify(requestParams, { encodeValuesOnly: true });\r\n return makeApiEndpointUrl(entity) + '?' + query;\r\n }\r\n```\r\n\r\nThe interfaces presented in the example are exported from types/index.d.ts.\r\n\r\nAll in all it seems that things are starting to break after the first render (coming from the server), when the app goes in SPA mode. If I use `\u003Ca>` tags instead of `\u003CNuxtLink>` everything works correctly, the only downside being that the app no longer offers the SPA feeling (as pages get refreshed).\r\n\r\n### Logs\r\n\r\n_No response_",[2939,2940,2941,2944],{"name":2884,"color":2885},{"name":2853,"color":2854},{"name":2942,"color":2943},"needs reproduction","FBCA04",{"name":2945,"color":2946},"⛔️ can be closed","484893",26409,"Strange behavior when using NuxtLink","2024-05-24T14:34:00Z","https://github.com/nuxt/nuxt/issues/26409",0.7047121,{"labels":2953,"number":2957,"owner":2856,"repository":2856,"state":2888,"title":2958,"updated_at":2959,"url":2960,"score":2961},[2954,2955,2956],{"name":2884,"color":2885},{"name":2853,"color":2854},{"name":2942,"color":2943},13746,"nuxt-link does not resolve inside an as prop","2025-02-07T21:30:33Z","https://github.com/nuxt/nuxt/issues/13746",0.70481133,{"labels":2963,"number":2968,"owner":2856,"repository":2856,"state":2888,"title":2969,"updated_at":2970,"url":2971,"score":2972},[2964,2967],{"name":2965,"color":2966},"enhancement","8DEF37",{"name":2884,"color":2885},12030,"Auto import components nested folders","2023-01-19T16:49:19Z","https://github.com/nuxt/nuxt/issues/12030",0.70592517,["Reactive",2974],{},["Set"],["ShallowReactive",2977],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f5oIYNXzxp0I_sjxb972ACm0Om6eAGKs2ctcCwn7sT14":-1},"/nuxt/ui/4173"]