` change it to `\u003CUInput :model-value=\"'12714274'\" readonly />`\r\n\r\n\r\n\r\n--------- \r\n\r\n\r\n### Version\r\n\r\nedit: v2.18.5\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/nuxt-ui-uds7la?file=app.vue\r\n\r\n### Description\r\n\r\nSo i have a few grouped form inputs and noticed all values being empty since last update, reverted back to 2.18.4 and worked again. \r\n\r\n_(👀 or you can tell me im using it wrong)_\r\n\r\n### Why i am using :value= ? \r\n\r\n```\r\n\u003CUInput\r\n :value=\"firstname\"\r\n @input=\"$emit('update:firstname', $event.target.value)\"\r\n />\r\n \u003CUInput\r\n :value=\"lastname\"\r\n @input=\"$emit('update:lastname', $event.target.value)\"\r\n />\r\n```\r\n\r\nand using \r\n```\r\n\u003CAccountFormDetails\r\n v-model:firstname=\"formState.firstname\"\r\n v-model:lastname=\"formState.lastname\"\r\n/>\r\n```\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n```shell-script\r\nno logs,no errors\r\n```\r\n\r\nedit: added repro\r\nedit: pinpointed on 2.18.5, this happened between 18.4 and 18.5",[3203],{"name":3192,"color":3193},2238,"UInput :value not working in v2.18.5","2024-09-25T08:36:59Z","https://github.com/nuxt/ui/issues/2238",0.71979636,{"description":3210,"labels":3211,"number":3217,"owner":3146,"repository":3146,"state":3183,"title":3218,"updated_at":3219,"url":3220,"score":3221},"Nuxt 3 uses Vue 3 with Composition API and [unjs/unctx](https://github.com/unjs/unctx) for supporting composables with the implicit context in nuxtApp (plugins, middleware) and nuxt kit too.\r\n\r\nHowever, there are many cases in this needs a better explanation of how it works internally to understand why an issue like [nuxt instance unavailable](https://github.com/nuxt/framework/issues?q=nuxt+instance+unavailable) happens and how to fix it with proper usage.\r\n\r\nI've made an outline story in https://github.com/nuxt/nuxt.js/issues/14269 which can probably be used as a basis to initiate this concept page.",[3212,3214],{"name":3180,"color":3213},"5319e7",{"name":3215,"color":3216},"3.x","29bc7f",14723,"Document composables concept","2023-09-19T20:24:18Z","https://github.com/nuxt/nuxt/issues/14723",0.7214141,{"description":3223,"labels":3224,"number":3232,"owner":3146,"repository":3163,"state":3183,"title":3233,"updated_at":3234,"url":3235,"score":3236},"### Environment\n\nBuild error on vercel.app and on local windows 10, both on build and dev.\n\n### Version\n\nv1.4.4 @nuxt/ui-pro - Saas Template\n\n### Reproduction\n\nInstall a clean saas template.\nEnable typescript check in nuxt.config\n\nTry to deploy it on vercel.\n\nAnd try to copy/paste the url in a facebook post.\n\nHere is a 100% clean saas template, without typeCheck enabled:\nhttps://stackblitz.com/~/github.com/LutherApp/codespace-project\n\n(This is a copy of my [github repo](https://github.com/LutherApp/codespace-project))\n\n### Description\n\nOn build there will be \n## errors on the \"title\"-variable\nError-msg:\nObject literal may only specify known properties, and 'title' does not exist in type 'OgImageOptions\u003C\"NuxtSeo\"> | OgImagePrebuilt'. (etc.)\n\n## \"authors\"- and \"title\"-variable in blog/index\n3 x Type 'bla bla bla' is not assignable to type 'bla bla bla'.\n1 x Property 'avatar' is optional in type 'bla bla bla' but required in type 'bla bla bla'.\n\n## Fix\nI was adding this workaround for typecheck in three or four files:\n```\n// @ts-expect-error Object literal may only specify known properties, and 'title' does not exist in type 'OgImageOptions\u003C\"NuxtSeo\"> | OgImagePrebuilt'.\n```\n\nIn blog/index.vue a was adding this lines in the template in front of `UPageBody` (in blog/index.vue):\n``` \n\u003C!--\n @vue-expect-error The variable authors throws four errors;\n 3 x Type 'bla bla bla' is not assignable to type 'bla bla bla'.\n 1 x Property 'avatar' is optional in type 'bla bla bla' but required in type 'bla bla bla'.\n -->\n```\n\n## seo info from the page missing on facebook\nThere is still noe data about the page on facebook. \n(Other nuxt-content I have made earlier have this info when I copy/paste the url to facebook.)\n\n## Any questions to this issue?\nPlease add some questions to get more info about this issues. (This was written faster than normal.)",[3225,3226,3229],{"name":3192,"color":3193},{"name":3227,"color":3228},"pro","5BD3CB",{"name":3230,"color":3231},"upstream","78bddb",2415,"og:fields in my 100% clean saas template doesn't shows on facebook, and your own public saas template don't show the og:image","2024-10-22T09:40:37Z","https://github.com/nuxt/ui/issues/2415",0.721515,{"description":3238,"labels":3239,"number":3245,"owner":3146,"repository":3146,"state":3183,"title":3246,"updated_at":3247,"url":3248,"score":3249},"### Describe the feature\r\n\r\nMy feature suggestion is to add 1 or 2 new composables:\r\n\r\n- `useResponseHeader`\r\n- `useResponseHeaders`\r\n\r\nWhich would both be very similar to their existing equals:\r\n- [useRequestHeader](https://nuxt.com/docs/api/composables/use-request-header)\r\n- [useRequestHeaders](https://nuxt.com/docs/api/composables/use-request-headers)\r\n\r\nWithout having looked extensively at these existing composables, I think you might even be able to reuse a lot of the same scaffolding for creating `useResponseHeader(s)`.\r\n\r\nAlthough I have not contributed before, I am experienced in building with Nuxt and would be willing (glad!) to implement this feature myself.\r\n\r\nMotivation for this feature comes from my own desire to have a simple way to set response headers. For what it's worth, I did a quick search for issues and more people are asking about this:\r\n- https://github.com/nuxt/nuxt/discussions/25091\r\n- https://github.com/nuxt/nuxt/discussions/25425 \r\n- https://github.com/nuxt/nuxt/discussions/21920\r\n\r\n(It's not impossible right now of course, but having a dedicated composable for this in the docs could increase discoverability/usability.)\r\n\r\n### Additional information\r\n\r\n- [X] Would you be willing to help implement this feature?\r\n- [ ] Could this feature be implemented as a module?\r\n\r\n### Final checks\r\n\r\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\r\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[3240,3242],{"name":3140,"color":3241},"8DEF37",{"name":3243,"color":3244},"🍰 p2-nice-to-have","0E8A16",27075,"Suggestion for new composables: `useResponseHeader(s)` similar to existing `useRequestHeader` composable","2024-10-08T16:16:32Z","https://github.com/nuxt/nuxt/issues/27075",0.72503215,{"description":3251,"labels":3252,"number":3259,"owner":3146,"repository":3163,"state":3183,"title":3260,"updated_at":3261,"url":3262,"score":3263},"### Description\r\n\r\nFor elements like UAvatar that use images, it would be a good idea to integrate with Nuxt Image for those who have it installed to benefit from image optimizations like setting image format, applying modifiers, and all the other features that Nuxt Image offers.\r\n\r\n### Additional context\r\n\r\n_No response_",[3253,3255,3258],{"name":3140,"color":3254},"a2eeef",{"name":3256,"color":3257},"wontfix-v2","ffffff",{"name":3160,"color":3161},2078,"[Avatar] Integration with Nuxt Image for built in image optimization","2024-11-07T12:02:04Z","https://github.com/nuxt/ui/issues/2078",0.72516906,["Reactive",3265],{},["Set"],["ShallowReactive",3268],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fFqBen2sop1wAd-NWhjFZRBOP0AmCoQmTG0yVKq4CQBI":-1},"/nuxt/ui/3433"]