\n \u003Cslot>\u003C/slot>\n \u003C/div>\n\u003C/template>\n\n\n\u003Cscript lang=\"ts\" setup>\nimport { useRoute } from 'vue-router';\n\nconst route = useRoute();\nconst items = useBreadcrumbItems({\n schemaOrg: true,\n});\n\u003C/script>\n\n\n### Description\n\nthis will render the breadcrumbs in a \u003Cdiv> with an aria-label, which is a violation of this rule: https://html-validate.org/rules/aria-label-misuse.html\n\n- Rule ID: aria-label-misuse\n- Category: Accessibility\n- Standards: WCAG 2.2 (A)WCAG 2.1 (A)WCAG 2.0 (A)\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n ERROR HTML validation errors found for /song/justice-genesis-1\n\ninline\n 129:21990 error \"aria-label\" cannot be used on this element aria-label-misuse\n\n✖ 1 problem (1 error, 0 warnings)\n\nMore information:\n https://html-validate.org/rules/aria-label-misuse.html\n\n```",[3209,3210],{"name":3188,"color":3189},{"name":3175,"color":3176},2649,"breadcrumb HTML validation errors","2024-11-15T08:53:33Z","https://github.com/nuxt/ui/issues/2649",0.7983545,{"description":3217,"labels":3218,"number":3219,"owner":3162,"repository":3220,"state":3179,"title":3221,"updated_at":3222,"url":3223,"score":3224},"### Environment\n\n- Operating System: `Darwin`\n- Node Version: `v22.14.0`\n- Nuxt Version: `3.16.0`\n- CLI Version: `3.22.5`\n- Nitro Version: `2.11.5`\n- Package Manager: `bun@1.2.4`\n- Builder: `-`\n- User Config: `runtimeConfig`, `modules`, `app`, `site`, `sitemap`, `robots`, `css`, `icon`, `image`, `ui`, `devtools`, `future`, `unhead`, `compatibilityDate`\n- Runtime Modules: `@nuxt/ui@3.0.0-beta.3`, `@pinia/nuxt@0.10.1`, `@nuxt/scripts@0.10.5`, `@nuxt/image@1.9.0`, `@nuxtjs/seo@2.2.0`\n- Build Modules: `-`\n\n### Reproduction\n\nnda\n\n### Describe the bug\n\nnr dev\n$ nuxt dev\nNuxt 3.16.0 with Nitro 2.11.5 nuxi 8:23:08 PM\n 8:23:08 PM\n ➜ Local: http://localhost:3003/\n ➜ Network: use --host to expose\n\n ➜ DevTools: press Shift + Option + D in the browser (v2.2.1) 8:23:10 PM\n\n\n✔ Nuxt Icon loaded local collection elfi with 70 icons 8:23:10 PM\nℹ Running with compatibility version 4 nuxt 8:23:10 PM\n✔ Vite client built in 190ms 8:23:11 PM\n✔ Vite server built in 528ms 8:23:12 PM\n\n[nitro 8:23:14 PM] ERROR Error: Could not load /\u003Cmy-path>/node_modules/unenv/dist/runtime/runtime/mock/empty.mjs (imported by node_modules/nuxt-og-image/dist/runtime/server/og-image/satori/instances.js): ENOENT: no such file or directory, open '/\u003Cmy-path>/node_modules/unenv/dist/runtime/runtime/mock/empty.mjs'\n\n\nundefined\n\n### Additional context\n\nUpgraded by \"nuxi upgrade -f\" from 3.15.4 and couldn't able to start properly with provided error.\nTried with unhead flag in nuxt.config - same error\n```\nunhead: {\n legacy: true,\n }\n```\n\n### Logs\n\n```shell-script\n\n```",[],414,"scripts","Nuxt 3.16.0 won't start properly nor dev nor build","2025-03-07T18:58:03Z","https://github.com/nuxt/scripts/issues/414",0.8017383,{"description":3226,"labels":3227,"number":3229,"owner":3162,"repository":3178,"state":3179,"title":3230,"updated_at":3231,"url":3232,"score":3233},"### Description\n\nBest I can tell, @nuxtjs/color-mode is installed as a dependency of Nuxt/UI. \n\nI have been struggling to disable this for some time. I have tried different methods, cleared out Application > Storage in my browser, etc., and no matter what I do, I can't seem to figure out whether this is possible and/or what are the correct entries to `app.config.ts` or `nuxt.config.ts`. \n\nIf anyone could help that would be incredible!",[3228],{"name":3159,"color":3173},3143,"How to disable @nuxtjs/color-mode","2025-01-24T11:30:47Z","https://github.com/nuxt/ui/issues/3143",0.8038456,{"description":3235,"labels":3236,"number":3239,"owner":3162,"repository":3178,"state":3179,"title":3240,"updated_at":3241,"url":3242,"score":3243},"### Environment\n\n- Operating System: Linux\n- Node Version: v22.4.0\n- Nuxt Version: 3.16.2\n- CLI Version: 3.25.0\n- Nitro Version: 2.11.9\n- Package Manager: pnpm@10.8.0\n- Builder: -\n- User Config: css, app, modules, imports, compatibilityDate, sanctum, fileStorage, ssr\n- Runtime Modules: @nuxt/ui@3.0.2, @nuxtjs/i18n@9.5.3, nuxt-auth-sanctum@0.6.6, @vueuse/nuxt@12.8.2, nuxt-file-storage@0.3.0, @nuxtjs/device@3.2.4\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nNuxt UI version 3.0.2\n\n### Reproduction\n\n```vue\n\u003Cscript setup lang=\"ts\">\nconst model = defineModel()\n\nconst query = ref('')\nconst items = ref([])\n\nconst isOpen = ref(false)\nconst isLoading = ref(false)\n\nconst search = useDebounceFn(async () => {\n if (query.value.length > 1) {\n isLoading.value = true\n\n items.value = (await fetchApi('categories?q=' + query.value)).data\n\n isLoading.value = false\n }\n}, 250)\n\nfunction create(name) {\n model.value = { name: name.trim() }\n\n query.value = ''\n isOpen.value = false\n}\n\u003C/script>\n\n\u003Ctemplate>\n \u003CUSelectMenu v-model=\"model\"\n v-model:open=\"isOpen\"\n v-model:search-term=\"query\"\n :items=\"items\"\n :loading=\"isLoading\"\n label-key=\"name\"\n create-item=\"always\"\n @create=\"create\"\n @update:search-term=\"search\" />\n\u003C/template>\n```\n\n### Description\n\nI want to create new category \"Des\", but cant, because i found \"Deserts\".\nOption `create-item=\"always\"` ignored.\n\nDemonstration: https://skr.sh/vVFQ3lvSifh",[3237,3238],{"name":3188,"color":3189},{"name":3175,"color":3176},3949,"USelectMenu create-item=\"always\" not working","2025-04-23T08:22:30Z","https://github.com/nuxt/ui/issues/3949",0.8046715,{"description":3245,"labels":3246,"number":3248,"owner":3162,"repository":3178,"state":3179,"title":3249,"updated_at":3250,"url":3251,"score":3252},"### Description\r\n\r\nHi, is there any way to disable the error template? \r\n\r\nI just tried to set an empty template, but this creates a div with some classes that create a slight jump because of the set class mt-2... and overwriting from the template is also not possible...\r\n\r\nI need to do this because I need to show some custom logic where error messages are used as hints.\r\n\r\ncheers,\r\ngregor",[3247],{"name":3159,"color":3173},2100,"disabling formgroup error template","2024-09-03T08:41:36Z","https://github.com/nuxt/ui/issues/2100",0.8064933,{"description":3254,"labels":3255,"number":3257,"owner":3162,"repository":3178,"state":3179,"title":3258,"updated_at":3259,"url":3260,"score":3261},"### Description\n\nHi, using the UTable with Expanded feature is it possible to apply a style to the Expand column ??? I can see how to do this for columns I add but not the expanded column.\r\nAlso is it possible to change the default so the expanded is open by default? Or to change this in the script section?\r\n\r\nThanks I was unable to find answers in the docs.",[3256],{"name":3159,"color":3173},2244,"UTable Expandable questions?","2024-11-05T14:52:12Z","https://github.com/nuxt/ui/issues/2244",0.8085742,["Reactive",3263],{},["Set"],["ShallowReactive",3266],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fMma3eYqdZssd447SDmbLfevZzDQ-WEmI2RI4eFhd3us":-1},"/nuxt/ui/3834"]