\n \u003C/div>\n \u003C/u-button>\n \u003C/template>\n\n \u003Ctemplate #item=\"{ item }\">\n // Content\n \u003C/template>\n\u003C/u-accordion>\n```\n\nCurrently i don't see a way with the default slot to override the AccordionRoot trigger\n",[2039,2042],{"name":2040,"color":2041},"question","d876e3",{"name":2002,"color":2003},3455,"Override Slot for Accordion Trigger","2025-03-04T17:30:46Z","https://github.com/nuxt/ui/issues/3455",0.7876551,{"description":2049,"labels":2050,"number":2056,"owner":1988,"repository":1988,"state":1990,"title":2057,"updated_at":2058,"url":2059,"score":2060},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v18.17.1`\r\n- Nuxt Version: `3.9.1`\r\n- CLI Version: `3.10.0`\r\n- Nitro Version: `2.8.1`\r\n- Package Manager: `yarn@4.0.2`\r\n- Builder: `-`\r\n- User Config: `experimental`, `typescript`, `devtools`, `modules`, `pwa`, `routeRules`, `image`, `viewport`, `imports`, `dayjs`, `runtimeConfig`, `app`, `components`, `ssr`, `dev`, `css`, `nitro`, `vite`, `hooks`, `sourcemap`\r\n- Runtime Modules: `@pinia/nuxt@0.5.1`, `dayjs-nuxt@2.1.9`, `nuxt-jsonld@2.0.8`, `@nuxtjs/device@3.1.1`, `@hypernym/nuxt-anime@2.1.1`, `nuxt-viewport@2.1.0`, `@nuxt/image@1.1.0`, `@vite-pwa/nuxt@0.4.0`, `nuxt-vitest@0.11.5`\r\n- Build Modules: `-`\r\n\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/github-3e85ga\r\n\r\n### Describe the bug\r\n\r\nNuxt gives console warnings `Plugin d-plugin depends on b-plugin but they are not registered.` if depending on parallel plugin which is not accessible in environment the plugin depending is on (`.client` or `.server` suffix).\r\n\r\nAlso, it appears that the plugin that depends on other plugins does not execute if `dependsOn` is not fulfilled completely for the current environment.\r\n\r\nFor example, if I have four plugins:\r\n- a.client.ts - `{ name: 'a', parallel: true, dependsOn: undefined }`\r\n- b.server.ts - `{ name: 'b', parallel: true, dependsOn: undefined }`\r\n- c.ts - `{ name: 'c', parallel: true, dependsOn: undefined }`\r\n- d.ts - `{ name: 'd', parallel: undefined, dependsOn: ['a', 'b', 'c'] }`\r\n\r\nAll of these has code:\r\n```ts\r\nsetup: () => {\r\n console.log('Hello from \"\u003CPLUGIN NAME>\" plugin');\r\n },\r\n```\r\n\r\nMy CLI prints:\r\n```\r\nHello from \"B\" plugin\r\nHello from \"C\" plugin\r\n```\r\n\r\nMy browser's console prints:\r\n```\r\nHello from \"B\" plugin\r\nHello from \"C\" plugin\r\nHello from \"A\" plugin\r\nHello from \"C\" plugin\r\n```\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[2051,2053],{"name":1999,"color":2052},"8DEF37",{"name":2054,"color":2055},"🍰 p2-nice-to-have","0E8A16",25401,"Filter `dependsOn` based on environment at build-time, with dev-time warning","2024-06-30T11:06:07Z","https://github.com/nuxt/nuxt/issues/25401",0.78937715,{"description":2062,"labels":2063,"number":2065,"owner":1988,"repository":2066,"state":2067,"title":2068,"updated_at":2069,"url":2070,"score":2071},"### 🐛 The bug\n\nThe following script\n```js\nuseScript('https://cdn.jsdelivr.net/npm/js-confetti@0.12.0/dist/js-confetti.browser.js')\n```\n\ncurrently yields\n```html\n\u003Cscript data-onload=\"\" data-onerror=\"\" defer=\"\" fetchpriority=\"low\" crossorigin=\"anonymous\" referrerpolicy=\"no-referrer\" src=\"https://cdn.jsdelivr.net/npm/js-confetti@0.12.0/dist/js-confetti.browser.js\" data-hid=\"5c23421\">\u003C/script>\n```\n\nWhile [documentation](https://scripts.nuxt.com/docs/guides/key-concepts#default-behavior) lists `async` as one of the attributes that will be added by default, it is missing from the generated output above.\n\nAt the same time `fetchpriority=\"low\"` seems to be missing from documentation, which is also a [default](https://github.com/unjs/unhead/blob/cd3c4caa7ca032de74b30ac90c38eb1638802908/packages/unhead/src/composables/useScript.ts#L126).\n\n### 🛠️ To reproduce\n\nN/A\n\n### 🌈 Expected behavior\n\n🌈\n\n### ℹ️ Additional context\n\n_No response_",[2064],{"name":2029,"color":2030},304,"scripts","closed","Documented default script attributes vary from actual","2025-02-14T01:39:15Z","https://github.com/nuxt/scripts/issues/304",0.46151826,{"description":2073,"labels":2074,"number":2077,"owner":1988,"repository":2008,"state":2067,"title":2078,"updated_at":2079,"url":2080,"score":2081},"### Environment\n\n- Operating System: Windows_NT\n- Node Version: v20.10.0\n- Nuxt Version: 3.14.1592\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: unknown\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-alpha.9\n\n### Reproduction\n\nhttps://github.com/prof-schnitzel/nuxt-ui-module-bug\n\n### Description\n\nI want to write a custom module that relies on NuxtUI. In the module's playground I am using a NuxtUI component and tailwind classes. I can see that the component is resolved to its html stucture and tailwind classes are applied, but the tailwind css is not loaded on that site. This was still working with v2 of NuxtUI. Is there something wrong with my code or is it a bug?\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2075,2076],{"name":2029,"color":2030},{"name":2002,"color":2003},2803,"Tailwind styles not loaded when using NuxtUI in a module","2024-11-29T11:44:54Z","https://github.com/nuxt/ui/issues/2803",0.7332936,{"description":2083,"labels":2084,"number":2088,"owner":1988,"repository":2089,"state":2067,"title":2090,"updated_at":2091,"url":2092,"score":2093},"They stopped paying sponsorship a month ago",[2085],{"name":2086,"color":2087},"marketing","f5c828",1178,"nuxt.com","Delete ShipShape partner page","2023-06-06T12:14:43Z","https://github.com/nuxt/nuxt.com/issues/1178",0.73450124,{"description":2095,"labels":2096,"number":2099,"owner":1988,"repository":2089,"state":2067,"title":2100,"updated_at":2101,"url":2102,"score":2103},"- [ ] `/integrations`\n- [ ] `/community/repositories`\n- [ ] `/community/partners`\n- [ ] `/partners`",[2097],{"name":1999,"color":2098},"1ad6ff",550,"Improve filters with tags like on `modules.nuxtjs.org`","2022-05-23T14:42:02Z","https://github.com/nuxt/nuxt.com/issues/550",0.7756838,["Reactive",2105],{},["Set"],["ShallowReactive",2108],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"tm3wc-fZWo-lypfUnOUxF2RJiEhs_ku29JIe8dO3PSc":-1},"/nuxt/icon/304"]