\n \u003Cdiv>\n \u003Cdiv\n id=\"test-wrapper\"\n >\n \u003Cp>\n Hello Vue 3\n \u003C/p>\n \u003C/div>\n \u003C/div>\n\u003C/body>\n```\n\nBut it looks like this:\n```vue\n\u003Cbody>\n \u003Cdiv\n data-v-app=\"\"\n id=\"__nuxt\"\n />\n \u003Cdiv>\n \u003Cdiv\n id=\"test-wrapper\"\n msg=\"Hello Vue 3\"\n >\n \u003Cp>\n Hello in component\n \u003C/p>\n \u003C/div>\n \u003C/div>\n\u003C/body>\n```\n\n### Additional context\n\nI tried solving the issue with no avail, I'm sorry I can not be of more help 😢 ",[1984],{"name":1985,"color":1986},"pending triage","5D08F5",1014,"nuxt","test-utils","open","Rerender from @testing-library/vue not working","2025-03-07T14:25:15Z","https://github.com/nuxt/test-utils/issues/1014",0.7306438,{"description":1996,"labels":1997,"number":2007,"owner":1988,"repository":1988,"state":1990,"title":2008,"updated_at":2009,"url":2010,"score":2011},"We have experimental support in Nuxt 3 for both island components and server-only components (which are implemented using islands) - see https://github.com/nuxt/framework/pull/5689 and https://github.com/nuxt/framework/pull/9972 for initial implementations and https://github.com/nuxt/nuxt/discussions/17956 for initial partial RFC.\r\n\r\nThere are a number of future linked improvements. This issue is to track those and provide some place to document the linking story, purpose and usage of server components within Nuxt.\r\n\r\n## Purpose and usage\r\n\r\nCurrently we are collecting use patterns to ensure that the final API and implementation for server components is useful. But the following are some benefits we are exploring:\r\n\r\n1. security and direct access to server APIs within certain components\r\n2. separate caching strategies for individual chunks of HTML\r\n3. leaner bundle size (keeping some dependencies solely on the server, e.g. syntax highlighting)\r\n4. extensibility\r\n5. rendering individual components within other modules or server routes (e.g. for component previews, OG images, PDF downloads, etc.)\r\n6. ...\r\n\r\nComments and suggestions are very welcome.\r\n\r\n```[tasklist]\r\n### Roadmap\r\n- [x] Allow async components - https://github.com/nuxt/nuxt/issues/18500\r\n- [x] Client-side interactivity - https://github.com/nuxt/nuxt/issues/19765\r\n- [x] remove server component content from payload and prefetch on route transition: https://github.com/nuxt/nuxt/pull/21461\r\n- [x] Hybrid/remote/streaming sources for server components - https://github.com/nuxt/nuxt/issues/12343\r\n- [x] lazy (non-blocking) server components\r\n- [x] interactive components within server components\r\n- [x] deep interactive components within server components\r\n- [x] slot refactor to stabilize the API for other remotes sources such as CMS\r\n- [x] server pages\r\n- [ ] Looking for server-side Performance optimisation opportunity\r\n- [ ] A deep documentation for islands\r\n- [ ] Apply islands features to non SFC components\r\n```",[1998,2001,2004],{"name":1999,"color":2000},"enhancement","8DEF37",{"name":2002,"color":2003},"discussion","538de2",{"name":2005,"color":2006},"🍰 p2-nice-to-have","0E8A16",19772,"server component roadmap","2025-03-17T18:46:11Z","https://github.com/nuxt/nuxt/issues/19772",0.7329292,{"description":2013,"labels":2014,"number":2024,"owner":1988,"repository":1989,"state":2025,"title":2026,"updated_at":2027,"url":2028,"score":2029},"This happens on any test when I trigger a click. Not yet tying any other trigger events.\r\n\r\nError\r\n`TypeError: Cannot read properties of undefined (reading 'error')`\r\n\r\nVersion\r\n`\"nuxt-vitest\": \"0.10.5\",`\r\n\r\nConfig\r\n```\r\nimport { defineVitestConfig } from 'nuxt-vitest/config';\r\n\r\nexport default defineVitestConfig({\r\n test: {\r\n environment: 'nuxt',\r\n },\r\n});\r\n```\r\n\r\nTest\r\n```\r\nimport { describe, it, expect } from 'vitest';\r\nimport { mount, VueWrapper } from '@vue/test-utils';\r\n\r\nimport ApiTypeTabsDescription from '../components/ApiTypeTabsDescription.vue';\r\nlet wrapper: VueWrapper;\r\nwrapper = mount(ApiTypeTabsDescription);\r\n\r\ndescribe('ApiTypeTabsDescription', () => {\r\n it('More text is visible', async () => {\r\n const toggle = wrapper.find('.register-show-more-btn-text');\r\n await toggle.trigger('click');\r\n await wrapper.vm.$nextTick();\r\n expect(wrapper.find('.register-show-more-description').exists()).toBe(true);\r\n });\r\n});\r\n```\r\n\r\n```\r\nTypeError: Cannot read properties of undefined (reading 'error')\r\n ❯ HTMLScriptElement.dispatchEvent node_modules/.pnpm/happy-dom@12.1.2/node_modules/happy-dom/src/event/EventTarget.ts:102:54\r\n ❯ HTMLScriptElement.dispatchEvent node_modules/.pnpm/happy-dom@12.1.2/node_modules/happy-dom/src/nodes/element/Element.ts:920:29\r\n ❯ Function.dispatchError node_modules/.pnpm/happy-dom@12.1.2/node_modules/happy-dom/src/window/WindowErrorUtility.ts:60:32\r\n ❯ Function.loadExternalScript node_modules/.pnpm/happy-dom@12.1.2/node_modules/happy-dom/src/nodes/html-script-element/HTMLScriptElementUtility.ts:54:24\r\n```",[2015,2018,2021],{"name":2016,"color":2017},"vitest-environment","b60205",{"name":2019,"color":2020},"needs reproduction","DE7793",{"name":2022,"color":2023},"closed-by-bot","ededed",533,"closed","When using trigger('click') get this error & tests don't run TypeError: Cannot read properties of undefined (reading 'error')","2023-12-13T01:51:03Z","https://github.com/nuxt/test-utils/issues/533",0.45047498,{"description":2031,"labels":2032,"number":2033,"owner":1988,"repository":2034,"state":2025,"title":2035,"updated_at":2036,"url":2037,"score":2038},"This will allow us to iterate faster and speed up the build for both sites, we can see at a later stage for adding auth again to nuxt.com once we:\n- Have features for authenticated users outside studio\n- Hybrid rendering on Nuxt 3 with Session/Auth module compatible for it (will need a `@nuxtjs/strapi` update once ready), this means having a static page with the ability to check the user session with a script in header (like color-mode module for SSG) to redirect before pages render. And move the authenticated links/buttons/actions on client-side with placeholders on the server.\n- Nuxt Content Query builder with better performance on SSR\n\n`nuxt.com` will be deployed on Vercel with `nuxi generate`.\n\n`studio.nuxt.com` will have a landing page with the pricing in it + a register for beta button, deployed as an SSR app on Vercel.\nThe `modules/editor` will be renamed to `modules/studio` so it could share components for the project view to the same UI in development (`localhost:3000/_studio/`) with no login and creating route apis (`/api/_studio`) for editing the project locally (basically using Nitro storage to edit files `useStorage()`).\n\nBy separating them, on top of iterating faster in development, we can also launch studio.nuxt.com and nuxt.com at two different dates, as well as opening the beta access to nuxt.com (translators, partners, insiders) and studio.nuxt.com (partners, theme creators) at different times.\n\nHow much time would this take @benjamincanac ?",[],760,"nuxt.com","[Studio] Move Auth & Projects into `studio.nuxt.com`","2022-07-05T09:42:12Z","https://github.com/nuxt/nuxt.com/issues/760",0.6942823,{"description":2040,"labels":2041,"number":2042,"owner":1988,"repository":2034,"state":2025,"title":2043,"updated_at":2044,"url":2045,"score":2046},"- [ ] Search\n- [ ] Subnavbar Links\n- [ ] Examples\n- [ ] Community / Open Source Guides\n- [ ] v2 migration nuxtjs.org",[],1306,"Documentation Update","2023-07-10T12:42:01Z","https://github.com/nuxt/nuxt.com/issues/1306",0.7044509,{"description":2048,"labels":2049,"number":2053,"owner":1988,"repository":2034,"state":2025,"title":2054,"updated_at":2055,"url":2056,"score":2057},"- [ ] Remove landing\n- [ ] Branch deployment on domain\n- [ ] Update logo\n- [ ] Upgrade docus\n- [ ] Link to go back to nuxt.com\n",[2050],{"name":2051,"color":2052},"roadmap","ff7a1a",535,"`v3.nuxt.com`","2022-11-17T11:41:11Z","https://github.com/nuxt/nuxt.com/issues/535",0.7110914,{"description":2059,"labels":2060,"number":2053,"owner":1988,"repository":1989,"state":2025,"title":2065,"updated_at":2066,"url":2067,"score":2057},"Hey,\r\n\r\nI just upgraded to the latest vitest 0.32.0 with nuxt-vitest 0.8.5 and have a error with the module import regarding:\r\nhttps://vitest.dev/guide/common-errors.html\r\n\r\n```shell\r\nError: Cannot find module 'virtual:nuxt:/project/.nuxt/nuxt.config.mjs'.\r\n\r\n- If you rely on tsconfig.json to resolve modules, please install \"vite-tsconfig-paths\" plugin to handle module resolution.\r\n - Make sure you don't have relative aliases in your Vitest config. Use absolute paths instead. Read more: https://vitest.dev/guide/common-errors\r\n ❯ node_modules/nuxt/dist/app/composables/payload.js:6:31\r\n 4| import { getCurrentInstance } from \"vue\";\r\n 5| import { useNuxtApp, useRuntimeConfig } from \"../nuxt.js\";\r\n 6| import { renderJsonPayloads } from \"#build/nuxt.config.mjs\";\r\n | ^\r\n 7| export function loadPayload(url, opts = {}) {\r\n 8| if (process.server) {\r\n ❯ node_modules/nuxt/dist/app/composables/index.js:49:206\r\n\r\n⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯\r\nSerialized Error: {\r\n \"code\": \"ERR_MODULE_NOT_FOUND\",\r\n}\r\n```\r\n\r\nExample of my minimum setup\r\n```js\r\nimport { defineVitestConfig } from 'nuxt-vitest/config';\r\nimport tsconfigPaths from \"vite-tsconfig-paths\";\r\n\r\nexport default defineVitestConfig({\r\n plugins: [tsconfigPaths()], // this is added regarding the link of vitest\r\n test: {\r\n globals: true,\r\n clearMocks: true,\r\n restoreMocks: true,\r\n threads: false,\r\n testTimeout: 300000,\r\n setupFiles: [\r\n new URL('tests/unit.i18n.setup.ts', import.meta.url).pathname,\r\n new URL('tests/unit.vuetify.setup.ts', import.meta.url).pathname,\r\n new URL('tests/unit.router.setup.ts', import.meta.url).pathname\r\n ],\r\n deps: {\r\n inline: ['element-plus', /@nuxt\\/test-utils/],\r\n },\r\n ssr: {\r\n noExternal: [/vue-i18n/, 'vuetify'],\r\n },\r\n },\r\n});\r\n```\r\n\r\nI can clarify that this config works with vitest 0.31.4 without any errors. Previously imports like `#build/nuxt.config.mjs` where no issue inside the `.nuxt` folder.\r\n\r\nHelp would be appreciated!",[2061,2064],{"name":2062,"color":2063},"bug","d73a4a",{"name":2016,"color":2017},"defineVitestConfig with vitest 0.32.0 Cannot find module paths","2023-12-02T23:07:42Z","https://github.com/nuxt/test-utils/issues/535",{"labels":2069,"number":2070,"owner":1988,"repository":1988,"state":2025,"title":2071,"updated_at":2072,"url":2073,"score":2074},[],13614,"Migrating to nitropack","2023-01-19T17:02:40Z","https://github.com/nuxt/nuxt/issues/13614",0.7219635,{"description":2076,"labels":2077,"number":2083,"owner":1988,"repository":1988,"state":2025,"title":2084,"updated_at":2085,"url":2086,"score":2087},"### Environment\n\nproduction (nuxt.com)\n\n### Reproduction\n\nGo to https://nuxt.com/docs/community/framework-contribution#set-up-your-local-development-environment\r\n\r\n\n\n### Describe the bug\n\nThere is a mention of nuxt/nuxt.com repo, it leads to a 404 page.\r\n\r\nPlus this text may be unclear \r\n> 🚧 This repository will be open-sourced shortly. Until then, you will need to open a pull request to see a preview of your changes.\r\n\r\nAs far as I know, nuxt/nuxt is open-source, looks like there is some confusion https://github.com/nuxt/website-v2/issues/2227#issuecomment-1616858566 \n\n### Additional context\n\nI can provide a PR if needed\n\n### Logs\n\n_No response_",[2078,2081],{"name":2079,"color":2080},"3.x","29bc7f",{"name":1985,"color":2082},"E99695",21899,"Possible outdated link nuxt/nuxt.com in documentation","2023-07-03T08:25:29Z","https://github.com/nuxt/nuxt/issues/21899",0.72351784,{"labels":2089,"number":2094,"owner":1988,"repository":1988,"state":2025,"title":2095,"updated_at":2096,"url":2097,"score":2098},[2090,2093],{"name":2091,"color":2092},"documentation","5319e7",{"name":2079,"color":2080},10926,"Documentation Progress","2023-01-19T14:32:52Z","https://github.com/nuxt/nuxt/issues/10926",0.7245251,["Reactive",2100],{},["Set"],["ShallowReactive",2103],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"4AEL6d65Ou_N8ybT-NPtVmR1RY0EHQYoy-S3YV4jB7M":-1},"/nuxt/nuxt.com/533"]