even without any other code.\n\n### Version\n\nv3.0.0-alpha.5\n\n### Reproduction\n\n`\u003Ctemplate>\n \u003CUContainer>\n \u003CUForm :schema=\"schema\" :state=\"state\" class=\"space-y-4\" @submit=\"onSubmit\">\n \u003CUFormField label=\"Code\" name=\"Code\"\n >\u003CUInput v-model=\"state.code\" />\n \u003C/UFormField>\n \u003C/UForm>\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nimport { z } from 'zod';\nimport type { FormSubmitEvent } from '#ui/types';\n\nconst supabase = useSupabaseClient();\nconst toast = useToast();\n\n//Form\nconst schema = z.object({\n code: z.string().min(3),\n});\n\ntype Schema = z.output\u003Ctypeof schema>;\n\nconst state = reactive\u003CPartial\u003CSchema>>({\n code: undefined,\n});\n\nasync function onSubmit(event: FormSubmitEvent\u003CSchema>) {\n toast.add({\n title: 'Success',\n description: 'The form has been submitted.',\n color: 'success',\n });\n console.log(event.data);\n}\n\u003C/script>\n`\n\n### Description\n\nUInput causes an error\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2993,2994],{"name":2905,"color":2906},{"name":2971,"color":2972},2349,"UInput causes error","2024-10-10T14:15:25Z","https://github.com/nuxt/ui/issues/2349",0.6748107,{"description":3001,"labels":3002,"number":3009,"owner":2911,"repository":2911,"state":2975,"title":3010,"updated_at":3011,"url":3012,"score":3013},"### Discussed in https://github.com/nuxt/nuxt/discussions/19742\r\n\r\n\u003Cdiv type='discussions-op-text'>\r\n\r\n\u003Csup>Originally posted by **nzuyanov** March 16, 2023\u003C/sup>\r\nHi all! I need to manually split chunks in my project. Following the rollup documentation I used the `vite.build.rollupOptions.output.manualChunks` property of nuxt config.\r\nBut after running ```npm run generate```, I see a lot of errors in the console.\r\n\r\n```\r\n ERROR [nuxt] [request error] [unhandled] [500] Maximum call stack size exceeded\r\n at getModuleDependencies (file://./node_modules/vue-bundle-renderer/dist/runtime.mjs:56:24) \r\n at getModuleDependencies (file://./node_modules/vue-bundle-renderer/dist/runtime.mjs:77:21) \r\n at getModuleDependencies (file://./node_modules/vue-bundle-renderer/dist/runtime.mjs:77:21) \r\n at getModuleDependencies (file://./node_modules/vue-bundle-renderer/dist/runtime.mjs:77:21) \r\n```\r\n\r\nI decided to test the behavior on the latest version of nuxt and separate `vue` (for example) into a separate chunk, and the rest of `node_modules` into `vendors` chunk. The same error appeared in the console.\r\n\r\nMaybe I'm doing something wrong, but it could be a bug.\r\n\r\n### Environment\r\nNuxt Version: `3.3.1`\r\nNitro Version: `2.3.1`\r\nBuilder: `vite`\r\n\r\n### Reproduction\r\nhttps://stackblitz.com/edit/github-qwhmub?file=nuxt.config.ts\u003C/div>",[3003,3006,3007],{"name":3004,"color":3005},"3.x","29bc7f",{"name":2905,"color":2906},{"name":3008,"color":2958},"🔨 p3-minor",19837,"[nuxt] [request error] [unhandled] [500] Maximum call stack size exceeded","2023-05-28T10:55:35Z","https://github.com/nuxt/nuxt/issues/19837",0.6817148,{"description":3015,"labels":3016,"number":3020,"owner":2911,"repository":2926,"state":2975,"title":3021,"updated_at":3022,"url":3023,"score":3024},"### For what version of Nuxt UI are you asking this question?\n\nv2.x\n\n### Description\n\nThank you in advance for your help!\n\nWe’re using Nuxt UI Pro for styling in our application, which primarily uses a language other than English. When working with the `SelectMenu` component and enabling the `multiple` prop, the displayed value shows \"1 selected\" (or similar text like \"{x-number} selected\"). Instead, we’d like to display the actual selected value(s) of the SelectMenu, like when NOT using the `multiple` prop, if just one item is selected. And any more than that, we need to display the \"{x-number} selected\" it in our language, not English.\n\nDo I need to create a custom wrapper component for this, or is there a simpler way to customize the displayed text? I’m not that deep on frontend development and manipulating package classes in Nuxt 3, so I’d appreciate guidance on how to approach this issue.\n\nI’ve reviewed the source code here: https://github.com/nuxt/ui/blob/dev/src/runtime/components/forms/SelectMenu.vue but couldn’t figure out how to achieve this.\n\nI see the code where the const for the label is generated, but whats the best approach to change that for us?\n\n```\n const label = computed(() => {\n if (!props.modelValue) return null\n\n if (Array.isArray(props.modelValue) && props.modelValue.length) {\n return `${props.modelValue.length} selected`\n } else if (['string', 'number'].includes(typeof props.modelValue)) {\n return props.valueAttribute ? accessor(selected.value, props.optionAttribute) : props.modelValue\n }\n\n return accessor(props.modelValue as Record\u003Cstring, any>, props.optionAttribute)\n })\n```\n\nAny advice or direction would be greatly appreciated!",[3017],{"name":3018,"color":3019},"question","d876e3",2867,"How can I change the \u003CUSelectMenu> to display the value of a selected item, instead of \"1 selected\" when adding the multiple prop","2024-12-09T11:50:53Z","https://github.com/nuxt/ui/issues/2867",0.6827782,["Reactive",3026],{},["Set"],["ShallowReactive",3029],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fm3V80aXwWP6EBIpQF9WUL36H9mXh_hawfKNVmV_VLhk":-1},"/nuxt/ui/2609"]