\n// will trigger typescript error on v-model\n\u003CUSelectMenu\n v-model=\"memberForm.user\"\n :items=\"addableUsers\"\n label-key=\"email\"\n :value-key=\"undefined\"\n/>\n// will work but i need to handle label display manually using slot\n\u003CUSelectMenu\n v-model=\"memberForm.user\"\n :items=\"addableUsers\"\n/>\n```\n\n### Description\n\nI'm currently migrate my project to NuxtUi V3 and I have some issues with `\u003CUInputMenu />` and `\u003CUSelectMenu />`. On my selects I want to retrieve the full object selected so I don't set `value-key` but for display purpose I use the `label-key` props, however when I do this I get this typescript error on the `v-model` :\n```\nUnable to assign type 'User | undefined' to type 'string | undefined'.\nUnable to assign type 'User' to type 'string'. ts-plugin(2322)\n```\nAfter some research, I think the `label-key` alter the `value-key` type and that's what triggers the error.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3209,3212,3213,3216],{"name":3210,"color":3211},"bug","d73a4a",{"name":3163,"color":3164},{"name":3214,"color":3215},"typescript","3A629E",{"name":3189,"color":3190},3670,"v-model typescript error when using label-key InputMenu/SelectMenu","2025-03-24T20:38:15Z","https://github.com/nuxt/ui/issues/3670",0.69647557,{"description":3223,"labels":3224,"number":3227,"owner":3140,"repository":3166,"state":3167,"title":3228,"updated_at":3229,"url":3230,"score":3231},"### Environment\n\n------------------------------\n- Operating System: Windows_NT\n- Node Version: v20.9.0\n- Nuxt Version: 3.13.1\n- CLI Version: 3.13.1\n- Nitro Version: 2.9.7\n- Package Manager: npm@10.9.0\n- Builder: -\n- User Config: devtools, modules, css, ui, colorMode, compatibilityDate, icon, sourcemap, experimental, nitro, future, pwa, routeRules, spaLoadingTemplate, runtimeConfig\n- Runtime Modules: @nuxt/ui@3.0.0-alpha.9, @vueuse/nuxt@10.11.1, @nuxtjs/mdc@0.6.1, @formkit/auto-animate/nuxt@0.8.2, @vite-pwa/nuxt@0.10.5\n- Build Modules: -\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\n`style tag`\n\n`Use`\n\n`debug`\n\n\n\n### Description\n\nSorry, I don't know if it's a bad configuration on my part, however the styles in which I use @apply don't work for me.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3225,3226],{"name":3210,"color":3211},{"name":3163,"color":3164},2763,"postcss style not applying","2024-12-05T13:48:59Z","https://github.com/nuxt/ui/issues/2763",0.71364594,{"description":3233,"labels":3234,"number":3240,"owner":3140,"repository":3141,"state":3167,"title":3241,"updated_at":3242,"url":3243,"score":3244},"Update [Webreinvent partner page](https://nuxt.com/support/agencies/webreinvent) with content below :\n\nWebReinvent has 12+ years of experience building software and a team of 50+ software professionals including software developers, UI/UX designers, testers, DevOps, project managers, etc. The team is well-versed in the Nuxt ecosystem and has delivered multiple high-performance web apps, dashboards, real-time apps, multi-tenant SaaS applications, etc.\n\nWe are one of the most process-driven companies and we love to follow industry standards. Some of them are managing git repo, code review/audits, deploying new releases via CI/CD, automated software testing, maintaining detailed technical documentation, application performance monitoring, etc. We have been delivering MVP to enterprise-level software products from startup to MSME.\n\nContact us to build your MVP fast or migrate your legacy software to Nuxt or maintain your existing software or scale your software to the enterprise level. We're here to help.\n",[3235,3237],{"name":3185,"color":3236},"1ad6ff",{"name":3238,"color":3239},"marketing","f5c828",1156,"Update Webreinvent partner page","2023-06-06T12:14:42Z","https://github.com/nuxt/nuxt.com/issues/1156",0.7149541,{"description":3246,"labels":3247,"number":3258,"owner":3140,"repository":3140,"state":3167,"title":3259,"updated_at":3260,"url":3261,"score":3262},"### Describe the bug\r\nIn Nuxt 3.4.2, the NuxtWelcome component CSS is being included in the global entry.XX.css file even when it's not used. This didn't happen in 3.4.1\r\n\r\nExample:\r\nWhen you no longer use the NuxtWelcome component..\r\n\u003Cimg width=\"135\" alt=\"image\" src=\"https://user-images.githubusercontent.com/2112282/233808114-75e37049-e504-471a-8d7c-794d0d15740b.png\">\r\n\r\nIt's CSS is still being included in the main entry.css file\r\n\u003Cimg width=\"1272\" alt=\"image\" src=\"https://user-images.githubusercontent.com/2112282/233808141-b482bc5d-f7e5-462d-9a97-2fe95f47dcd8.png\">\r\n\r\n### Reproduction\r\nExample Repo\r\nhttps://github.com/hecktarzuli/nuxt-bug-20450-good-3-4-1\r\n\r\nBranch: Main = Nuxt v3.4.1\r\nhttps://nuxt-bug-20450-good-3-4-1.vercel.app/\r\n(Notice this has no CSS file at all)\r\n\r\nBranch: nuxt-3.4.2 = Nuxt v3.4.2\r\nhttps://nuxt-bug-20450-good-3-4-1-git-nuxt-3-4-2-josh-masteringnux.vercel.app/\r\n(Notice this does have a global entry.XX.css file, and it's filled with the NuxtWelcome styles.\r\n\r\nSTEPS:\r\nCreate a Nuxt 3.4.2 project and do not use the Welcome page.\r\nDo a build, preview\r\nNotice the entry.XX.css file still has the welcome page CSS in it.\r\n### Additional context\r\n\r\nThis didn't happen in the previous version (3.4.1)\r\nIf you have tailwind installed, the global entry.XX.css file would contain tailwind and the NuxtWelcome styles.\r\n\r\n### Environment\r\nnode 14.18.0\r\nnuxt 3.4.1/2\r\n",[3248,3251,3252,3255],{"name":3249,"color":3250},"3.x","29bc7f",{"name":3210,"color":3211},{"name":3253,"color":3254},"🔨 p3-minor","FBCA04",{"name":3256,"color":3257},"performance","E84B77",20450,"Entry.XX.css includes NuxtWelcome styles when it's not used","2023-04-28T09:14:45Z","https://github.com/nuxt/nuxt/issues/20450",0.7171069,["Reactive",3264],{},["Set"],["ShallowReactive",3267],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f9c61Jb6LWtjkNTy5HpyjhARx3x_z1zGjqukAluRe1M8":-1},"/nuxt/test-utils/748"]