validation. In the minimal reproduction, since I provided two paths for the error, the message should appear on both fields. However, the error message only shows if only 1 path is specified.\n\n### Additional context\n\n### Logs\n\n```shell-script\n\n```",[2895],{"name":2896,"color":2897},"bug","d73a4a",2981,"`UForm` does not show error for multiple paths","2025-01-09T14:53:06Z","https://github.com/nuxt/ui/issues/2981",0.6958323,{"description":2904,"labels":2905,"number":2909,"owner":2874,"repository":2875,"state":2887,"title":2910,"updated_at":2911,"url":2912,"score":2913},"### For what version of Nuxt UI are you suggesting this?\n\nv2.17.0\n\n### Description\n\nI want to set styles for other elements based on the activation state of the `ULink` component, but it was unexpectedly difficult. First, I didn't find relevant content in the [documentation](https://ui.nuxt.com/components/link) of the `ULink` component. It wasn't until I found this [issue](https://github.com/nuxt/ui/issues/1718) that I learned that I could get the activation state through `v-slot={isActive}`. Secondly, I can't directly set the `data-*` attribute for the `ULink` component to save the value of isActive, because this will prompt a ts error and the rendered `a` tag will not contain attributes, so I have to add another HTML tag as a child element of the `ULink` component to indirectly add the `data-*` attribute. \n\n### Additional context\n\n_No response_",[2906],{"name":2907,"color":2908},"enhancement","a2eeef",2726,"Use `data-*` to add activation state to `ULink`","2024-12-05T13:48:55Z","https://github.com/nuxt/ui/issues/2726",0.70201063,{"description":2915,"labels":2916,"number":2918,"owner":2874,"repository":2875,"state":2887,"title":2919,"updated_at":2920,"url":2921,"score":2922},"### Description\n\nHi,\r\n\r\nI try to create a redirect link for each item in my select, but the redirect doesn't work all the time. If no item is selected, then for the first one it will select it rather than redirect the user :\r\n\r\n```vue\r\n\u003CUSelectMenu\r\n v-model=\"selected\" \r\n :options=\"contacts\" \r\n>\r\n \u003Ctemplate #option=\"{ option }\" >\r\n \u003Cspan>{{ option.name }}\u003C/span>\r\n \u003CNuxtLink :to=\"localePath({name: 'contacts-id', params: { id: option.id }})\" @click.stop>Show\u003C/NuxtLink>\r\n \u003C/template>\r\n\u003C/USelectMenu>\r\n```\r\n\r\nMuch appreciated help!\r\nThanks",[2917],{"name":2868,"color":2869},2115,"[SelectMenu] @click.stop not working on first item clicked","2024-09-11T14:48:05Z","https://github.com/nuxt/ui/issues/2115",0.7061943,{"description":2924,"labels":2925,"number":2928,"owner":2874,"repository":2875,"state":2887,"title":2929,"updated_at":2930,"url":2931,"score":2932},"### Environment\n\n- Operating System: Linux\n- Node Version: v22.11.0\n- Nuxt Version: 3.14.1592\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: npm@10.9.0\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui@3.0.0-alpha.9\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\nMy current nuxt.config.ts file looks like this:\n\n```js\nexport default defineNuxtConfig({\n compatibilityDate: \"2024-04-03\",\n ssr: false,\n future: {\n compatibilityVersion: 4,\n },\n modules: [\"@nuxt/ui\"],\n hooks: {\n \"prerender:routes\"({ routes }) {\n routes.clear();\n },\n },\n routeRules: {\n \"/\": {\n redirect: \"dashboard\",\n },\n },\n ui: {\n colorMode: false,\n },\n devtools: { enabled: true },\n});\n```\n\nThe project it's pretty empty.\n\n### Description\n\nI'm receiving this error message:\n\n\n\n### Additional context\n\nMy app.vue file:\n\n```vue\n\u003Ctemplate>\n \u003CUApp>\n \u003CNuxtLayout>\n \u003CNuxtPage />\n \u003C/NuxtLayout>\n \u003C/UApp>\n\u003C/template>\n\n\u003Cstyle>\n@import \"tailwindcss\";\n@import \"@nuxt/ui\";\n\n@theme {\n --font-sans: \"Poppins\", sans-serif;\n}\n\u003C/style>\n```\n\n### Logs\n\n```shell-script\nERROR Pre-transform error: [unimport] failed to find \"useColorMode\" imported from \"#imports\"\n✔ Nuxt Nitro server built in 1026 ms\nℹ Vite client warmed up in 2ms\nERROR Internal server error: [unimport] failed to find \"useColorMode\" imported from \"#imports\"\n Plugin: nuxt:imports-transform\n File: /home/app/node_modules/@nuxt/ui/dist/devtools/runtime/DevtoolsRenderer.vue?macro=true\n at file:///home/app/node_modules/unimport/dist/shared/unimport.54fdbc5b.mjs:120:17\n at Array.forEach (\u003Canonymous>)\n at file:///home/app/node_modules/unimport/dist/shared/unimport.54fdbc5b.mjs:117:44\n at Array.forEach (\u003Canonymous>)\n at parseVirtualImportsRegex (file:///home/app/node_modules/unimport/dist/shared/unimport.54fdbc5b.mjs:115:122)\n at detectImportsRegex (file:///home/app/node_modules/unimport/dist/shared/unimport.54fdbc5b.mjs:96:28)\n at process.processTicksAndRejections (node:internal/process/task_queues:105:5)\n at async injectImports (file:///home/app/node_modules/unimport/dist/shared/unimport.54fdbc5b.mjs:1387:61)\n at async Object.injectImportsWithContext [as injectImports] (file:///home/app/node_modules/unimport/dist/shared/unimport.54fdbc5b.mjs:1259:20)\n at async TransformPluginContext.transform (file:///home/app/node_modules/nuxt/dist/index.mjs:2633:30)\n at async file:///home/app/node_modules/vite-plugin-inspect/dist/index.mjs:1120:17\n at async PluginContainer.transform (file:///home/app/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49096:18)\n at async loadAndTransform (file:///home/app/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51929:27)\n at async viteTransformMiddleware (file:///home/app/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24)\n```",[2926,2927],{"name":2896,"color":2897},{"name":2871,"color":2872},2788,"Setting colorMode to false triggers an error","2024-11-28T09:51:56Z","https://github.com/nuxt/ui/issues/2788",0.7346,{"description":2934,"labels":2935,"number":2942,"owner":2874,"repository":2874,"state":2887,"title":2943,"updated_at":2944,"url":2945,"score":2946},"See example on https://tauri.studio/en/",[2936,2939],{"name":2937,"color":2938},"documentation","5319e7",{"name":2940,"color":2941},"3.x","29bc7f",10940,"Docs: Roadmap","2023-01-19T14:37:59Z","https://github.com/nuxt/nuxt/issues/10940",0.73472387,{"description":2948,"labels":2949,"number":2952,"owner":2874,"repository":2875,"state":2887,"title":2953,"updated_at":2954,"url":2955,"score":2956},"### Environment\n\n- Operating System: Darwin\n- Node Version: v18.20.3\n- Nuxt Version: 3.14.1592\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@9.14.2\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n\n\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/nuxt/ui/compare/v3...outluch:ui:bugfix-valuekey-customsearch\n\nTry to remove my patch (`filter ? () => rootItems : undefined`) in `SelectMenu.vue` and check how list of found items doesn't render in page select-menu.vue of playground\n\n### Description\n\nI have found weird behavior with custom server-side search, while using custom value-label fields from my db results.\nIf you fetch items from server and they contain for example `id` and `name` instead of `value` and `label`, I pass props to SelectMenu: `:value-key: \"id\"`, `:label-key=\"name\"` and then when I try to search with input, it doesnot render results. I have found that it is because of Radix Vue: when we make own search we should not pass filter function to it, as I got it from sources of Radix. So my patch is in this one commit in my fork.\n\nBtw I have noticed, that migration to Reka UI is on the way and in Reka there are `ignoreFilter` prop now. I guess, we will need to pass it `false` also.. Maybe not. I did not dig this 100% for now.\n\nHope, this will help.\n\nhttps://github.com/nuxt/ui/compare/v3...outluch:ui:bugfix-valuekey-customsearch\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2950,2951],{"name":2896,"color":2897},{"name":2871,"color":2872},2807,"[v3][SelectMenu] with `filter=false` and `value-key` props","2025-01-25T13:10:49Z","https://github.com/nuxt/ui/issues/2807",0.73763496,{"description":2958,"labels":2959,"number":2960,"owner":2874,"repository":2961,"state":2887,"title":2962,"updated_at":2963,"url":2964,"score":2965},"### Environment\n\nmacOS / Chrome\n\n### Reproduction\n\n1. Go https://nuxt.com/\r\n2. Press \u003Ckbd>CMD\u003C/kbd> + \u003Ckbd>K\u003C/kbd> or the Search button on the navigation bar\r\n\n\n### Describe the bug\n\nThe search input dialog does not show up\n\n### Additional context\n\nOnly not works on Chrome (or Chromium) but works on Firefox / Safari\n\n### Logs\n\n_No response_",[],1572,"nuxt.com","Nuxt offical website unable to show search dialog on Chrome","2024-05-01T15:30:11Z","https://github.com/nuxt/nuxt.com/issues/1572",0.73991644,{"description":2967,"labels":2968,"number":2975,"owner":2874,"repository":2874,"state":2887,"title":2976,"updated_at":2977,"url":2978,"score":2979},"If your company or organization is using Nuxt, we welcome you to leave your feedback, feelings, comments, impressions and suggestions here.\r\n\r\nYour comments will be a great motivation for us to improve Nuxt. We are very grateful for your replies and support.\r\n\r\n### Recommended comment format:\r\n\r\n```\r\n- Company/Organization:\r\n- Product/Project:\r\n- Link:\r\n- Impression/Suggestion:\r\n```\r\n\r\nWe'd **love** to see screenshots of your Nuxt apps. Simply attach them in your comment!\r\n\r\nPS: If you think the *docs* should be improved, please leave detailed feedback in https://github.com/nuxt/docs/issues/1078 ☺️ \r\n\r\n> Note: Unrelated messages will be deleted periodically\r\n\r\n---\r\n\r\n如果您的公司或组织正在使用Nuxt,我们欢迎您在此处留下您的反馈,感受,评论,意见和建议。\r\n\r\n您的评论将成为我们改进Nuxt的重要动力。 我们非常感谢您的回复与支持。\r\n\r\n### 推荐的评论格式:\r\n\r\n```\r\n - 公司/组织名称:\r\n - 产品/项目名称:\r\n - 链接:\r\n - 意见/建议:\r\n```\r\n\r\n我们很**希望**看到您Nuxt应用的截图。 只需在评论中附上它们即可!\r\n\r\nPS:如果任何与改进文档相关的建议,您可以在 https://github.com/nuxt/docs/issues/1078 中留下详细的反馈 ☺️\r\n\r\n> 注意:将定期删除不相关的回复\r\n\r\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\r\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://cmty.app/nuxt\">Nuxt\u003C/a> community (\u003Ca href=\"https://cmty.app/nuxt/nuxt.js/issues/c8398\">#c8398\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2969,2972],{"name":2970,"color":2971},"good first issue","fbca04",{"name":2973,"color":2974},"2.x","d4c5f9",4681,"💻 Nuxt Users - We need you!","2023-02-06T11:25:16Z","https://github.com/nuxt/nuxt/issues/4681",0.7404608,["Reactive",2981],{},["Set"],["ShallowReactive",2984],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$foC39lIHmPJwKnRgJKuJG7llQjM0ucMHl8bL4ZiwHEEM":-1},"/nuxt/ui/2815"]