\r\n\u003C/template>\r\n\r\n\u003Cscript setup lang=\"ts\">\r\nconst flip = ref(false);\r\n\u003C/script>\r\n```\r\n\r\nWhile this works fine with nuxt-icon during development, it breaks in a Prod build. The transformations no longer get applied.\r\n\r\nIt would be great if nuxt-icon could also support these props, if possible. I'm open to help with this issue if someone could give me some pointers where to start.",[],138,"icon","[Feature Request] Support Iconify Transformations","2024-03-15T09:15:14Z","https://github.com/nuxt/icon/issues/138",0.7454774,{"description":3040,"labels":3041,"number":3049,"owner":3023,"repository":3050,"state":3025,"title":3051,"updated_at":3052,"url":3053,"score":3054},"### Description\n\n```\n\u003CUButton\n label=\"Github\"\n to=\"https://github.com/nuxt/ui/\"\n rel=\"noopener noreferrer\"\n/>\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_",[3042,3043,3046],{"name":3020,"color":3021},{"name":3044,"color":3045},"v3","49DCB8",{"name":3047,"color":3048},"triage","ffffff",4611,"ui","Support for `rel` attributes for `\u003CUButton to=\"\"/>`","2025-07-27T05:16:45Z","https://github.com/nuxt/ui/issues/4611",0.74985784,{"description":3056,"labels":3057,"number":3063,"owner":3023,"repository":3050,"state":3025,"title":3064,"updated_at":3065,"url":3066,"score":3067},"",[3058,3059,3060],{"name":3020,"color":3021},{"name":3044,"color":3045},{"name":3061,"color":3062},"reka-ui","56d799",2337,"[DropdownMenu/Popover/Tooltip] Improve arrow styling like `NavigationMenu` ","2024-10-08T10:12:48Z","https://github.com/nuxt/ui/issues/2337",0.757074,{"description":3069,"labels":3070,"number":3074,"owner":3023,"repository":3050,"state":3075,"title":3076,"updated_at":3077,"url":3078,"score":3079},"### Description\n\nVisually equal `UNavigationMenu` has a `badge` prop but `UTabs` is missing this feature\n\n\u003Cimg width=\"685\" height=\"55\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/889b4d58-fecf-4358-9501-8adfa8609133\" />\n\n### Additional context\n\nOriginally implemented within #2627 but missing in v3\n\nYes it can be done be using a slot, but it would provide great DX to have the prop. ",[3071,3072,3073],{"name":3020,"color":3021},{"name":3044,"color":3045},{"name":3047,"color":3048},4548,"closed","Add badge option to UTabs","2025-07-21T14:55:28Z","https://github.com/nuxt/ui/issues/4548",0.7020338,{"description":3081,"labels":3082,"number":3086,"owner":3023,"repository":3050,"state":3075,"title":3087,"updated_at":3088,"url":3089,"score":3090},"### Description\n\nIn case we need to pass an image URL to any component with icons (for example `Button`), we currently need to use slots when they are available (which is not always the case, for example the input icon of `CommandPalette`). It would be helpful if the `Icon` component could accept an URL and use `#build/ui-image-component` instead.\n\nExample use case: allowing users to upload/set their own icons.\n\n\n\n### Additional context\n\n_No response_",[3083,3084,3085],{"name":3020,"color":3021},{"name":3044,"color":3045},{"name":3047,"color":3048},4030,"Allow image url for icons","2025-05-15T14:39:30Z","https://github.com/nuxt/ui/issues/4030",0.737779,{"description":3092,"labels":3093,"number":3097,"owner":3023,"repository":3050,"state":3075,"title":3098,"updated_at":3099,"url":3100,"score":3101},"### Description\n\nI was looking to implement tooltip for NavigationMenu links as it was available in the DashboardSidebarLinks component in v2. But seems like the feature is no longer present in v3. \n\nhttps://ui2.nuxt.com/pro/components/dashboard-sidebar-links\n\nLet me know if there is still a simple way to implement tooltips specially in the collapsed Sidebar. I don't wanna go down with the slots approach. It looks dirty.\n\n\n\n### Additional context\n\nThis is what I have to do in order to get it to work. I believe this should be part of Nuxt UI already.\n\n``` js\n\u003CUNavigationMenu :collapsed=\"collapsed\" :items=\"links\" orientation=\"vertical\">\n \u003Ctemplate #item-leading=\"{ item }\">\n \u003CUTooltip :disabled=\"!collapsed\" :text=\"item.label\">\n \u003CUIcon\n :name=\"item.icon || ''\"\n class=\"text-dimmed group-hover:text-default size-5 shrink-0 transition-colors\"\n />\n \u003C/UTooltip>\n \u003C/template>\n\u003C/UNavigationMenu>\n```",[3094,3095,3096],{"name":3020,"color":3021},{"name":3044,"color":3045},{"name":3047,"color":3048},4050,"NavigationMenu has no way to apply a tooltip.","2025-05-10T11:36:41Z","https://github.com/nuxt/ui/issues/4050",0.73969483,{"description":3103,"labels":3104,"number":3108,"owner":3023,"repository":3050,"state":3075,"title":3109,"updated_at":3110,"url":3111,"score":3112},"### Description\n\nThe [popover](https://ui.nuxt.com/components/popover) uses the content of the default slot to create a trigger, but there is no way to provide a custom anchor. A `\u003Ctemplate #anchor>` slot for this purpose would be great.\n\n```html\n\u003CUFormField label=\"name\" name=\"name\">\n \u003CUPopover :open=\"isAutoCompleteOpen\">\n \u003Ctemplate #anchor>\n \u003CUInput v-model=\"state.name\" />\n \u003C/template>\n \u003Ctemplate #content>\n \u003CPlaceholder class=\"size-48 m-4 inline-flex\" />\n \u003C/template>\n \u003C/UPopover>\n\u003C/UFormField>\n```\n\nMy use case is building an autocomplete for a text input. The `InputMenu` is not suitable because the dropdown is too intrusive.\n\n### Additional context\n\n_No response_",[3105,3106,3107],{"name":3020,"color":3021},{"name":3044,"color":3045},{"name":3047,"color":3048},4013,"Add ability to provide an anchor for the popover","2025-05-22T15:04:18Z","https://github.com/nuxt/ui/issues/4013",0.740134,{"description":3114,"labels":3115,"number":3118,"owner":3023,"repository":3050,"state":3075,"title":3119,"updated_at":3120,"url":3121,"score":3122},"### Description\n\nWhen using \u003CUNavigationMenu> with onSelect (instead of to), there's no way to manually set the active state on items. It would be helpful to support an active prop or a value binding (like in buttons #3417) to reflect the selected state visually.\n\n### Additional context\n\n_No response_",[3116,3117],{"name":3020,"color":3021},{"name":3044,"color":3045},4185,"Allow `active` style on `UNavigationMenu` items when using `onSelect`","2025-05-19T15:38:25Z","https://github.com/nuxt/ui/issues/4185",0.7412802,{"description":3056,"labels":3124,"number":3022,"owner":3023,"repository":3127,"state":3075,"title":3128,"updated_at":3129,"url":3130,"score":3029},[3125],{"name":3020,"color":3126},"1ad6ff","nuxt.com","Add icons to modals","2023-02-15T12:31:51Z","https://github.com/nuxt/nuxt.com/issues/182",["Reactive",3132],{},["Set"],["ShallowReactive",3135],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fCYKKuHOjddPi4QJbPtn0R2DGbHV7oRPMEwDf4WB24wU":-1},"/nuxt/ui/4501"]