\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```",[3074,3075],{"name":3053,"color":3054},{"name":3040,"color":3041},2649,"breadcrumb HTML validation errors","2024-11-15T08:53:33Z","https://github.com/nuxt/ui/issues/2649",0.7983545,{"description":3082,"labels":3083,"number":3084,"owner":3027,"repository":3085,"state":3044,"title":3086,"updated_at":3087,"url":3088,"score":3089},"### 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":3091,"labels":3092,"number":3094,"owner":3027,"repository":3043,"state":3044,"title":3095,"updated_at":3096,"url":3097,"score":3098},"### 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!",[3093],{"name":3024,"color":3038},3143,"How to disable @nuxtjs/color-mode","2025-01-24T11:30:47Z","https://github.com/nuxt/ui/issues/3143",0.8038456,{"description":3100,"labels":3101,"number":3104,"owner":3027,"repository":3043,"state":3044,"title":3105,"updated_at":3106,"url":3107,"score":3108},"### 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",[3102,3103],{"name":3053,"color":3054},{"name":3040,"color":3041},3949,"USelectMenu create-item=\"always\" not working","2025-04-23T08:22:30Z","https://github.com/nuxt/ui/issues/3949",0.8046715,{"description":3110,"labels":3111,"number":3113,"owner":3027,"repository":3043,"state":3044,"title":3114,"updated_at":3115,"url":3116,"score":3117},"### 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",[3112],{"name":3024,"color":3038},2100,"disabling formgroup error template","2024-09-03T08:41:36Z","https://github.com/nuxt/ui/issues/2100",0.8064933,{"description":3119,"labels":3120,"number":3122,"owner":3027,"repository":3043,"state":3044,"title":3123,"updated_at":3124,"url":3125,"score":3126},"### 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.",[3121],{"name":3024,"color":3038},2244,"UTable Expandable questions?","2024-11-05T14:52:12Z","https://github.com/nuxt/ui/issues/2244",0.8085742,["Reactive",3128],{},["Set"],["ShallowReactive",3131],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fMma3eYqdZssd447SDmbLfevZzDQ-WEmI2RI4eFhd3us":-1},"/nuxt/ui/3834"]