` 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",[2983],{"name":2924,"color":2925},2238,"UInput :value not working in v2.18.5","2024-09-25T08:36:59Z","https://github.com/nuxt/ui/issues/2238",0.71979636,{"description":2990,"labels":2991,"number":2997,"owner":2913,"repository":2913,"state":2965,"title":2998,"updated_at":2999,"url":3000,"score":3001},"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.",[2992,2994],{"name":2962,"color":2993},"5319e7",{"name":2995,"color":2996},"3.x","29bc7f",14723,"Document composables concept","2023-09-19T20:24:18Z","https://github.com/nuxt/nuxt/issues/14723",0.7214141,{"description":3003,"labels":3004,"number":3012,"owner":2913,"repository":2933,"state":2965,"title":3013,"updated_at":3014,"url":3015,"score":3016},"### 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.)",[3005,3006,3009],{"name":2924,"color":2925},{"name":3007,"color":3008},"pro","5BD3CB",{"name":3010,"color":3011},"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":3018,"labels":3019,"number":3025,"owner":2913,"repository":2913,"state":2965,"title":3026,"updated_at":3027,"url":3028,"score":3029},"### 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).",[3020,3022],{"name":2907,"color":3021},"8DEF37",{"name":3023,"color":3024},"🍰 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,["Reactive",3031],{},["Set"],["ShallowReactive",3034],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fFqBen2sop1wAd-NWhjFZRBOP0AmCoQmTG0yVKq4CQBI":-1},"/nuxt/ui/3433"]