\n \u003Cdiv v-if=\"form.errors.email\">{{ form.errors.email }}\u003C/div>\n\n \u003Cbutton type=\"submit\">Submit\u003C/button>\n\u003C/Form>\n```\n\nInstead of configuring how the form validates (e.g. on each change, only after pressing submit, etc) we could use states for each value like Angular does. There the form validates on each change but each value has multiple states like is-pristine, isDirty, isUntouched and by use of those values triggering the visibility of the error messages can be precisely handled. Example:\n\n```vue\n\u003CForm :schema=\"schema\" :state=\"state\" @submit=\"onSubmit\" ref=\"form\">\n \u003Clabel for=\"email\">E-Mail\u003C/label>\n \u003Cinput name=\"email\" type=\"text\" v-model=\"state.email\" />\n \u003Cdiv v-if=\"form.errors.email && form.values.email.dirty\">{{ form.errors.email }}\u003C/div>\n\n \u003Cbutton type=\"submit\" :disabled=\"!form.isValid\">Submit\u003C/button>\n\u003C/Form>\n```",[2040,2041],{"name":2011,"color":2012},{"name":2017,"color":2018},2768,"Release form validation as standalone library","2024-12-16T09:47:15Z","https://github.com/nuxt/ui/issues/2768",0.75200135,{"description":2048,"labels":2049,"number":2052,"owner":1985,"repository":2002,"state":2020,"title":2053,"updated_at":2054,"url":2055,"score":2056},"### Description\n\nHey there!\n\nI am currently doing migration of https://www.nuxt-commerce.dev/ from Nuxt UI 2->3 (it was so good experience - kudos to you!).\n\nI finished migrating almost everything apart from one thing - the Select component that has Nuxt Links inside. Basically the NuxtLink does not seem to work - the page is not changing after clicking (while the selected value is correctly updated to the clicked one. Do you know what could be the issue?\n\nThe code I use looks like this:\n\n```html\n\u003Ctemplate>\n \u003CUSelect\n v-model=\"selected\"\n value-key=\"value\"\n :items=\"selectOptions\"\n >\n {{ selected }}\n \u003Ctemplate #item=\"{ item }\">\n \u003CNuxtLink\n :to=\"`/collection/${item?.to}`\"\n >\n \u003Cp>{{ item?.value }}\u003C/p>\n \u003C/NuxtLink>\n \u003C/template>\n \u003C/USelect>\n\u003C/template>\n\n\n\u003Cscript setup lang=\"ts\">\nconst selectOptions = computed(() => {\n return props.collections?.edges.map(({ node }) => ({\n value: node.title,\n to: node.handle,\n }))\n})\n\nconst selected = ref(\n selectOptions.value?.find(\n option => route.params.handle && option.to === route.params.handle[0],\n )?.value,\n)\n\u003C/script>\n```",[2050,2051],{"name":1996,"color":1997},{"name":2017,"color":2018},3443,"Does Select work with NuxtLink/UI Link?","2025-03-04T09:18:16Z","https://github.com/nuxt/ui/issues/3443",0.75649273,{"description":2058,"labels":2059,"number":2063,"owner":1985,"repository":1985,"state":2020,"title":2064,"updated_at":2065,"url":2066,"score":2067},"# Hi everyone, \r\nwhen I run vue.js aplication with nuxt.js on IE 9+ I get this error 'objects do not support the find property or method ' , in other browsers it work well, someone have any idea ?\r\n\r\n\r\n\r\n \r\n\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c919\">#c919\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2060],{"name":2061,"color":2062},"2.x","d4c5f9",1057,"objects do not support the find property or method ","2023-01-18T15:40:43Z","https://github.com/nuxt/nuxt/issues/1057",0.7573105,{"description":2069,"labels":2070,"number":2076,"owner":1985,"repository":2002,"state":2020,"title":2077,"updated_at":2078,"url":2079,"score":2080},"### Environment\n\n- Operating System: Darwin\n- Node Version: v22.12.0\n- Nuxt Version: 3.15.0\n- CLI Version: 3.17.2\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@9.14.4\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui@3.0.0-alpha.10\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-apha.10\n\n### Reproduction\n\nhttps://codesandbox.io/p/devbox/nuxt-ui3-forked-jncllj\n\n### Description\n\nRelated : https://github.com/histoire-dev/histoire/issues/702\n\nWhen a component is ULink or uses ULink (ex: UButton), Histoire doesn't work anymore.\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\nLink.vue:108 Uncaught (in promise) TypeError: Cannot destructure property 'href' of 'undefined' as it is undefined.\n at Link.vue:108:28\n at Proxy.renderFnWithContext (runtime-core.esm-bundler.js?v=896f4f1e:699:13)\n at Proxy.\u003Canonymous> (components.mjs:12:28)\n at renderComponentRoot (runtime-core.esm-bundler.js?v=896f4f1e:6521:16)\n at ReactiveEffect.componentUpdateFn [as fn] (runtime-core.esm-bundler.js?v=896f4f1e:5343:46)\n at ReactiveEffect.run (reactivity.esm-bundler.js?v=896f4f1e:198:19)\n at setupRenderEffect (runtime-core.esm-bundler.js?v=896f4f1e:5478:5)\n at mountComponent (runtime-core.esm-bundler.js?v=896f4f1e:5253:7)\n at processComponent (runtime-core.esm-bundler.js?v=896f4f1e:5206:9)\n at patch (runtime-core.esm-bundler.js?v=896f4f1e:4722:11)\n```",[2071,2073,2074],{"name":2029,"color":2072},"d73a4a",{"name":2017,"color":2018},{"name":2075,"color":2015},"triage",3004,"ULink make Histoire crash","2025-03-28T17:36:15Z","https://github.com/nuxt/ui/issues/3004",0.76043403,{"labels":2082,"number":2092,"owner":1985,"repository":1985,"state":2020,"title":2093,"updated_at":2094,"url":2095,"score":2096},[2083,2086,2089],{"name":2084,"color":2085},"3.x","29bc7f",{"name":2087,"color":2088},"pending triage","E99695",{"name":2090,"color":2091},"needs reproduction","FBCA04",14462,"useLazyFetch with useRoute query not work","2023-01-19T17:35:48Z","https://github.com/nuxt/nuxt/issues/14462",0.76252115,{"description":2098,"labels":2099,"number":2101,"owner":1985,"repository":1985,"state":2020,"title":2102,"updated_at":2103,"url":2104,"score":2105},"I need to search element in DOM to rendering my chart, but $el is invalid ,Could you help me?\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c289\">#c289\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2100],{"name":2061,"color":2062},336,"how to search element in DOM?","2023-01-18T15:38:47Z","https://github.com/nuxt/nuxt/issues/336",0.76274836,["Reactive",2107],{},["Set"],["ShallowReactive",2110],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"QTXi6YTFDiORioVuRG33wUNzyShrUCE6eKMzSVdJUaI":-1},"/nuxt/nuxt.com/1150"]