\n```\nCurrently, `UButton` doesn't have a `rel` attribute, which is required for ... you know.\n\nAlso for some reason, it's already having `target=\"_blank\"` without me even adding it to the element (?)\n\n### Additional context\n\n_No response_",[3020,3023,3026],{"name":3021,"color":3022},"enhancement","a2eeef",{"name":3024,"color":3025},"v3","49DCB8",{"name":3027,"color":3028},"triage","ffffff",4611,"nuxt","ui","open","Support for `rel` attributes for `\u003CUButton to=\"\"/>`","2025-07-27T05:16:45Z","https://github.com/nuxt/ui/issues/4611",0.78399456,{"description":3038,"labels":3039,"number":3042,"owner":3030,"repository":3031,"state":3043,"title":3044,"updated_at":3045,"url":3046,"score":3047},"### Description\n\nUSelect displays the label of the selected value. It might be interesting to add a slot to display another key when item is an object instead of the chosen label for some use case.\n\nMy own use case is picking the language :\n\n```\nconst items = [\n { value: 'en', label: 'English' },\n { value: 'fr', label: 'Français' },\n (...)\n]\n```\n\nMy open selection would display flags and labels, but once selected, the component would only display the value ('en' or 'fr' or ...). Could be the icon as well.\n\nProposal :\n\nselectLabelKey : When items is an array of objects, select the field to use as the label for the picked value on the base component (instead of labelKey)\n\n### Additional context\n\n_No response_",[3040,3041],{"name":3021,"color":3022},{"name":3024,"color":3025},4157,"closed","USelect base text display","2025-05-23T12:25:54Z","https://github.com/nuxt/ui/issues/4157",0.71750575,{"description":3049,"labels":3050,"number":3056,"owner":3030,"repository":3031,"state":3043,"title":3057,"updated_at":3058,"url":3059,"score":3060},"### Description\n\nHello there\nCurrently, \u003CUSelect /> and \u003CUSelectMenu /> components render options within a fixed-height dropdown. It is complicated to deal with large datasets. When displaying large lists of options, this can lead to performance issues. Is it possible we can get something like VueUse infinite scroll?\n[https://vueuse.org/core/useinfinitescroll/#useinfinitescroll](url) ??\n\n### Additional context\n\n_No response_",[3051,3054,3055],{"name":3052,"color":3053},"duplicate","cfd3d7",{"name":3021,"color":3022},{"name":3024,"color":3025},4172,"Uselect and UselectMenu content infinite scroll","2025-05-23T13:55:50Z","https://github.com/nuxt/ui/issues/4172",0.75150555,{"description":3062,"labels":3063,"number":3067,"owner":3030,"repository":3031,"state":3043,"title":3068,"updated_at":3069,"url":3070,"score":3071},"### Description\n\nI would like to see support for Russian localization.\n\n### Additional context\n\n_No response_",[3064,3065,3066],{"name":3021,"color":3022},{"name":3024,"color":3025},{"name":3027,"color":3028},4536,"Calendar","2025-07-16T11:53:32Z","https://github.com/nuxt/ui/issues/4536",0.7553533,{"description":3073,"labels":3074,"number":3078,"owner":3030,"repository":3031,"state":3043,"title":3079,"updated_at":3080,"url":3081,"score":3082},"### Description\n\nI want to allow multiple values selection in radio group, but cannot find any prop of way from the documentation\n\n### Additional context\n\n_No response_",[3075,3076,3077],{"name":3021,"color":3022},{"name":3024,"color":3025},{"name":3027,"color":3028},4143,"Multiple Value selection in radio group","2025-05-13T13:57:53Z","https://github.com/nuxt/ui/issues/4143",0.7580877,{"description":3084,"labels":3085,"number":3095,"owner":3030,"repository":3030,"state":3043,"title":3096,"updated_at":3097,"url":3098,"score":3099},"### Environment\n\nnuxt3\n\n### Reproduction\n\nnuxt3\n\n### Describe the bug\n\nnot work\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3086,3089,3092],{"name":3087,"color":3088},"3.x","29bc7f",{"name":3090,"color":3091},"pending triage","E99695",{"name":3093,"color":3094},"needs reproduction","FBCA04",22372,"the useFetch options of key not work","2023-07-28T11:06:29Z","https://github.com/nuxt/nuxt/issues/22372",0.7629448,{"description":3101,"labels":3102,"number":3105,"owner":3030,"repository":3030,"state":3043,"title":3106,"updated_at":3107,"url":3108,"score":3109},"### Describe the feature\n\n## The problem\r\n\r\nUses that need to use interceptors or anything else on `useFetch()` require to:\r\n\r\na. Create a new composable `useCustomFetch()` with the new functionality.\r\nb. Create a new compasable with `$fetch` and add the new functionality with the old.\r\nc. Modify the `useFetch()` on each call in every part of the application.\r\n\r\nAll of these scenarios could be fixed by offering the user a way to modify the `useFetch()` function _before_ its given into userland. \r\n\r\n## Solution\r\n\r\nThis could be accomplished easily by allowing the user to _replace_ the `useFetch()` composable with it' own and receive the original object. Each callback registered would be executed without order guarantee.\r\n\r\n```js\r\n// /composables/useFetch.js\r\n\r\nexport default () => {\r\n return useFetch().global(fetch => {\r\n // ...\r\n })\r\n}\r\n```\r\n\r\nThis approach fixes four things:\r\n\r\n- Doesn't replaces `useFetch()`, it extends it.\r\n- Users that already use `useFetch.js` can still use it as always.\r\n- Users that already use `useCustomFetch.js` can still use it as always.\r\n- Remove the `WARN Duplicated imports \"useFetch\", the one from \"#app\" has been ignored`\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[3103,3104],{"name":3087,"color":3088},{"name":3090,"color":3091},22778,"Allow to modify global useFetch","2023-08-24T08:25:40Z","https://github.com/nuxt/nuxt/issues/22778",0.7699548,{"description":3111,"labels":3112,"number":3116,"owner":3030,"repository":3117,"state":3043,"title":3118,"updated_at":3119,"url":3120,"score":3121},"https://volta.s3.fr-par.scw.cloud/Clean_Shot_2022_02_25_at_17_19_52_5b7648bd53.mp4\n",[3113],{"name":3114,"color":3115},"bug","ff281a",90,"nuxt.com","(UI) USelect: placeholder put in the value","2023-02-15T12:30:37Z","https://github.com/nuxt/nuxt.com/issues/90",0.7704852,{"description":3123,"labels":3124,"number":3128,"owner":3030,"repository":3031,"state":3043,"title":3129,"updated_at":3130,"url":3131,"score":3132},"### Description\n\nHi is it possible to add context menu in utable upon selecting a row ? or any alternative ways how to do it thru context menu and utable ?\n\nThankss.\n\n### Additional context\n\n_No response_",[3125,3126,3127],{"name":3021,"color":3022},{"name":3024,"color":3025},{"name":3027,"color":3028},4381,"[UTable] -> Context Menu upon selecting row","2025-06-24T12:32:01Z","https://github.com/nuxt/ui/issues/4381",0.77320564,{"labels":3134,"number":3137,"owner":3030,"repository":3030,"state":3043,"title":3138,"updated_at":3139,"url":3140,"score":3141},[3135,3136],{"name":3087,"color":3088},{"name":3090,"color":3091},13143,"Extending useFetch","2023-01-19T16:57:44Z","https://github.com/nuxt/nuxt/issues/13143",0.7740004,["Reactive",3143],{},["Set"],["ShallowReactive",3146],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fJM903IdQyebdykqngSUdByXJWtKx0NGLsizLNZP-VrY":-1},"/nuxt/ui/3663"]