\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```",[2930,2931],{"name":2909,"color":2910},{"name":2885,"color":2886},2649,"breadcrumb HTML validation errors","2024-11-15T08:53:33Z","https://github.com/nuxt/ui/issues/2649",0.7983545,{"description":2938,"labels":2939,"number":2940,"owner":2871,"repository":2941,"state":2900,"title":2942,"updated_at":2943,"url":2944,"score":2945},"### 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":2947,"labels":2948,"number":2950,"owner":2871,"repository":2888,"state":2900,"title":2951,"updated_at":2952,"url":2953,"score":2954},"### 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!",[2949],{"name":2868,"color":2897},3143,"How to disable @nuxtjs/color-mode","2025-01-24T11:30:47Z","https://github.com/nuxt/ui/issues/3143",0.8038456,{"description":2956,"labels":2957,"number":2960,"owner":2871,"repository":2888,"state":2900,"title":2961,"updated_at":2962,"url":2963,"score":2964},"### 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",[2958,2959],{"name":2909,"color":2910},{"name":2885,"color":2886},3949,"USelectMenu create-item=\"always\" not working","2025-04-23T08:22:30Z","https://github.com/nuxt/ui/issues/3949",0.8046715,{"description":2966,"labels":2967,"number":2969,"owner":2871,"repository":2888,"state":2900,"title":2970,"updated_at":2971,"url":2972,"score":2973},"### 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",[2968],{"name":2868,"color":2897},2100,"disabling formgroup error template","2024-09-03T08:41:36Z","https://github.com/nuxt/ui/issues/2100",0.8064933,["Reactive",2975],{},["Set"],["ShallowReactive",2978],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fMma3eYqdZssd447SDmbLfevZzDQ-WEmI2RI4eFhd3us":-1},"/nuxt/ui/3834"]