\n- \u003Chttps://nuxt.com/docs/3.x/>\n\n### Reproduction\n\n**Example 1:**\n\n1. Got to \u003Chttps://nuxt.com/docs/4.x/guide/concepts/rendering#client-side-rendering>\n2. Scroll to the alert containing the link [Read more in SPA Loading Template.](https://nuxt.com/docs/api/configuration/nuxt-config#spaloadingtemplate)\n3. Click the link.\n4. Navigation to correct page, but the anchor is being removed.\n\n- Link href is: https://nuxt.com/docs/api/configuration/nuxt-config#spaloadingtemplate\n- Navigation to: https://nuxt.com/docs/4.x/api/nuxt-config\n- Expected: https://nuxt.com/docs/4.x/api/nuxt-config#spaloadingtemplate\n\n\n**Example 2:**\n\n1. Go to \u003Chttps://nuxt.com/docs/4.x/getting-started/configuration>\n2. Try any of the links containing `Read more in Docs > API > Configuration > Nuxt Config`\n3. It navigates always to \u003Chttps://nuxt.com/docs/4.x/api/nuxt-config> instead of the anchor.\n\n\n**Example 3: (actually a separate BUG, but related and maybe same fix)**\n\n1. Go to \u003Chttps://nuxt.com/docs/3.x/getting-started/configuration>\n2. Try any of the links containing `Read more in Docs > API > Configuration > Nuxt Config`\n3. It navigates always to Nuxt 4 docs \u003Chttps://nuxt.com/docs/4.x/api/nuxt-config> instead of Nuxt 3 docs and the anchor. \n\n### Describe the bug\n\nIt seems to be the case for all links to the API > Configuration.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3034],{"name":3035,"color":3036},"pending triage","E99695",32802,"Docs contain multiple broken anchor links","2025-07-29T08:25:28Z","https://github.com/nuxt/nuxt/issues/32802",0.77107793,{"description":3043,"labels":3044,"number":3052,"owner":3024,"repository":3024,"state":3053,"title":3054,"updated_at":3055,"url":3056,"score":3057},"### Environment\r\n\r\nhttps://nuxt.com/docs/\r\n\r\n### Reproduction\r\n\r\nGo to https://nuxt.com/docs/getting-started/introduction for example, and perform a search from the top bar. Any result from the dropdown leads to a 404 page.\r\n\r\n### Describe the bug\r\n\r\nAlgolia searches from the top bar within https://nuxt.com/docs/ lead to 404 error pages.\r\n\r\nhttps://user-images.githubusercontent.com/463319/202392560-61b4c680-08bc-45c5-b5ed-c7c2881502c8.mov\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[3045,3048,3051],{"name":3046,"color":3047},"documentation","5319e7",{"name":3049,"color":3050},"3.x","29bc7f",{"name":3035,"color":3036},15505,"closed","Algolia searches in the documentation lead to 404 error pages","2023-01-19T17:52:36Z","https://github.com/nuxt/nuxt/issues/15505",0.6840117,{"description":3059,"labels":3060,"number":3061,"owner":3024,"repository":3062,"state":3053,"title":3063,"updated_at":3064,"url":3065,"score":3066},"### Environment\r\n\r\nn/a\r\n\r\n### Reproduction\r\n\r\n1. Go to https://v3.nuxtjs.org/\r\n2. Type 'useerror' in the Algolia search input\r\n3. Select the following:\r\n\r\n4. Observe the 'useerror' phrase being present on the page only in the bottom navigation content.\r\n\r\n\r\n\r\n### Describe the bug\r\n\r\nBottom navigation content of the documentation is being indexed by Algolia (haven't checked any other content that might possibly be included as well).\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[],987,"nuxt.com","docs: bottom navigation content is included in Algolia search results","2022-12-07T06:18:56Z","https://github.com/nuxt/nuxt.com/issues/987",0.7194685,{"description":3068,"labels":3069,"number":3061,"owner":3024,"repository":3073,"state":3053,"title":3074,"updated_at":3075,"url":3076,"score":3066},"### Environment\n\nNuxt project info: 12:50:22 PM\n\n------------------------------\n- Operating System: Linux\n- Node Version: v20.18.0\n- Nuxt Version: 3.13.2\n- CLI Version: 3.14.0\n- Nitro Version: 2.9.7\n- Package Manager: npm@10.8.2\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n------------------------------\n\n\n### Reproduction\n\nTry to run the following spec with vitest\n\n```\n// the line with ; works:\nimport { describe, it, expect, vi } from 'vitest';\n\n// the line without ; breaks:\n// import { describe, it, expect, vi } from 'vitest' \n\nimport { mockNuxtImport } from '@nuxt/test-utils/runtime'\nimport { nextTick } from 'vue'\n\nconst { navigateToMock } = vi.hoisted(() => {\n return {\n navigateToMock: vi.fn(),\n }\n})\n\nmockNuxtImport('navigateTo', () => {\n return navigateToMock\n})\n\ndescribe('ConfirmView', () => {\n it('does not navigate to /', async () => {\n await nextTick()\n expect(navigateToMock).not.toHaveBeenCalled()\n })\n})\n```\n\n### Describe the bug\n\nRunning vitest requires `;` at the end of the import line, when importing `vi`, and using `mockNuxtImport`.\n\nexample: \n```bash\nimport { describe, it, expect, beforeEach, vi } from 'vitest'; // Works\nimport { describe, it, expect, beforeEach, vi } from 'vitest' // Does not work\n```\n\nIf I don't include `;`, I get the following error:\n```\nError: Expected ';', got 'vi'\n ❯ getRollupError node_modules/rollup/dist/es/shared/parseAst.js:395:41\n ❯ convertProgram node_modules/rollup/dist/es/shared/parseAst.js:1083:26\n ❯ parseAstAsync node_modules/rollup/dist/es/shared/parseAst.js:2069:106\n ❯ ssrTransformScript node_modules/vite/dist/node/chunks/dep-CDnG8rE7.js:52319:11\n```\n\nAll my other imports can stay without `;`. And this only happens when I import `vi`, importing `describe`, `it`, etc does not break.\n\nSimply adding `;` to the end of the line makes all tests go green.\n\nhttps://github.com/user-attachments/assets/b6c7f0d1-10a4-4e08-9b39-8f9a29241c44\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3070],{"name":3071,"color":3072},"needs reproduction","DE7793","test-utils","Importing vi from vitest requires ';' at the end of the line.","2024-10-25T09:22:50Z","https://github.com/nuxt/test-utils/issues/987",{"description":3078,"labels":3079,"number":3080,"owner":3024,"repository":3062,"state":3053,"title":3081,"updated_at":3082,"url":3083,"score":3084},"",[],995,"Move `nuxt.com-next` to `dev` branch","2023-06-06T12:14:21Z","https://github.com/nuxt/nuxt.com/issues/995",0.72423387,{"description":3086,"labels":3087,"number":3080,"owner":3024,"repository":3073,"state":3053,"title":3088,"updated_at":3089,"url":3090,"score":3084},"If you run `yarn run test:e2e` in the [following reproduction](https://codesandbox.io/p/devbox/long-browser-tv43ny), you'll get this error\n```\n TypeError: Cannot read properties of undefined (reading 'options')\n\n at startServer (/project/workspace/node_modules/@nuxt/test-utils/dist/shared/test-utils.BHdilg2X.mjs:119:27)\n at Object.setup2 (/project/workspace/node_modules/@nuxt/test-utils/dist/shared/test-utils.B9x0-cXO.mjs:179:7)\n at Object.test$1.extend._nuxtHooks.scope (/project/workspace/node_modules/@nuxt/test-utils/dist/playwright.mjs:22:7)\n```\n\nThe `nuxt` config from the [use](https://codesandbox.io/p/devbox/long-browser-tv43ny?file=%2Fplaywright.config.ts%3A30%2C4-41%2C7) property is not accessible using the current path `ctx.nuxt.options`: https://github.com/nuxt/test-utils/blob/df8f6c862f1f8d77097733f13b00f236778c9b56/src/core/server.ts#L62 but works using `ctx.options.nuxtConfig` instead.\n\nIt used to work with `ctx.nuxt.options` but I recently upgraded to the latest @nuxt/test-utils and I started seing this. The reproduction testifies of this new issue that I have. Maybe I am misusing the `use:{nuxt:{}` option?\n\n\n\n",[],"Issue when accessing the nuxt test options from context in startServer function","2024-12-05T14:26:41Z","https://github.com/nuxt/test-utils/issues/995",{"description":3092,"labels":3093,"number":3100,"owner":3024,"repository":3101,"state":3053,"title":3102,"updated_at":3103,"url":3104,"score":3105},"### Environment\n\n- Operating System: `Darwin`\n- Node Version: `v20.10.0`\n- Nuxt Version: `3.14.159`\n- CLI Version: `3.15.0`\n- Nitro Version: `2.10.4`\n- Package Manager: `npm@10.9.0`\n- Builder: `-`\n- User Config: `default`\n- Runtime Modules: `@nuxt/ui@3.0.0-alpha.8`, `nuxt-svgo@4.0.9`\n- Build Modules: `-`\n\n### Version\n\nv3.0.0-alpha.8\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-ui-h9x1yj\n\n### Description\n\nWhen using the vertical NavigationMenu, `defaultOpen` doesn't work...\n\n\"When orientation is vertical, a [Collapsible](https://ui3.nuxt.dev/components/collapsible) component is used to display children. You can control the open state of each item using the `open` and `defaultOpen` properties.\" - [link here](https://ui3.nuxt.dev/components/navigation-menu#orientation).\n\nPS I tried `open` as well: same issue.\n\n### Additional context\n\n```vue\n\u003Cscript setup lang=\"ts\">\n/* Types */\nimport type { NavigationMenuItem } from '#ui/types';\n\nconst items = ref\u003CNavigationMenuItem[][]>([\n [\n {\n label: 'Menu 1',\n defaultOpen: true, // ! This doesn't work\n open: true, // ! This doesn't work\n children: [\n {\n label: 'Submenu 1',\n to: '/submenu-1',\n },\n {\n label: 'Submenu 2',\n to: '/submenu-2',\n },\n ],\n },\n {\n label: 'Menu 2',\n defaultOpen: true, // ! This doesn't work\n open: true, // ! This doesn't work\n children: [\n {\n label: 'Submenu 1',\n to: '/submenu-1',\n },\n {\n label: 'Submenu 2',\n to: '/submenu-2',\n },\n ],\n },\n ],\n]);\n\u003C/script>\n\n\u003Ctemplate>\n \u003Cdiv class=\"h-full\">\n \u003CUNavigationMenu orientation=\"vertical\" :items=\"items\" />\n \u003C/div>\n\u003C/template>\n```\n\n### Logs\n\n```shell-script\n\n```",[3094,3097],{"name":3095,"color":3096},"bug","d73a4a",{"name":3098,"color":3099},"v3","49DCB8",2755,"ui","Veritcal NavigationMenu - `defaultOpen` doesn't work","2024-11-26T10:29:27Z","https://github.com/nuxt/ui/issues/2755",0.73380005,{"description":3107,"labels":3108,"number":3114,"owner":3024,"repository":3101,"state":3053,"title":3115,"updated_at":3116,"url":3117,"score":3118},"### Description\n\nIs there a way to prevent popovers from closing when clicking outside the popover?",[3109,3110,3113],{"name":3021,"color":3022},{"name":3111,"color":3112},"wontfix-v2","ffffff",{"name":3098,"color":3099},2245,"Popover close-prevented","2024-11-10T09:20:02Z","https://github.com/nuxt/ui/issues/2245",0.7612139,{"description":3120,"labels":3121,"number":3125,"owner":3024,"repository":3101,"state":3053,"title":3126,"updated_at":3127,"url":3128,"score":3129},"### Environment\n\nThe website - https://ui.nuxt.com/getting-started\n\n### Version\n\nmain\n\n### Reproduction\n\nhttps://ui.nuxt.com/getting-started\n\n### Description\n\nNone of the children pages on the nuxt ui site have worked since updating to version 1.4.1 from the 1.3 edge version. \n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3122,3123],{"name":3095,"color":3096},{"name":3046,"color":3124},"0075ca",2237,"Couldn't resolve component \"default\" at \"/:slug\"","2024-10-02T14:22:51Z","https://github.com/nuxt/ui/issues/2237",0.7651608,["Reactive",3131],{},["Set"],["ShallowReactive",3134],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fVc5tvesp1sb4SoUuyNPevzwETqFu-SZBNs4K9jrxH2k":-1},"/nuxt/ui/2944"]