\n \u003CUButton label=\"Delete\" @click=\"deleteItem\" />\n \u003CUButton label=\"Add\" @click=\"addItem\" />\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nfunction deleteItem() {\n const randomIndex = Math.floor(Math.random() * data.value.length);\n data.value.splice(randomIndex, 1);\n}\n\nfunction addItem() {\n data.value.push({\n id: Math.floor(Math.random() * 10000).toString(),\n });\n}\n\nconst data = ref([\n {\n id: \"4600\",\n },\n {\n id: \"4599\",\n },\n {\n id: \"4598\",\n },\n {\n id: \"4597\",\n },\n {\n id: \"4596\",\n },\n]);\n\u003C/script>\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2941,2942,2943],{"name":2922,"color":2923},{"name":2908,"color":2909},{"name":2944,"color":2945},"triage","ffffff",3821,"Table is not reactive","2025-04-08T10:36:33Z","https://github.com/nuxt/ui/issues/3821",0.7174592,{"description":2952,"labels":2953,"number":2954,"owner":2911,"repository":2955,"state":2913,"title":2956,"updated_at":2957,"url":2958,"score":2959},"- [x] Colors & Fonts\n- [x] Landing page (Home)\n- [x] Showcase categories/hero\n- [x] Modules categories/hero\n- [x] Blog categories/hero\n- [x] Support hero/content",[],1305,"nuxt.com","Marketing Update","2023-07-04T10:00:31Z","https://github.com/nuxt/nuxt.com/issues/1305",0.7212153,{"description":2961,"labels":2962,"number":2963,"owner":2911,"repository":2955,"state":2913,"title":2964,"updated_at":2965,"url":2966,"score":2967},"### Environment\n\nOS: Windows 10\r\nBrowser: Brave\n\n### Reproduction\n\n1. In nuxt docs, open the [app.config.ts](https://nuxt.com/docs/guide/directory-structure/app-config#app-config-file) or [useRouter](https://nuxt.com/docs/api/composables/use-router) link\r\n2. Look at the Sidebar of the page, multiple routes are styled as active links\n\n### Describe the bug\n\nIn the documentation, the multiple routes having similar names are styled as an active link at the same time\r\n\r\n\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[],1228,"docs: multiple links are styled as active links","2023-10-10T14:45:12Z","https://github.com/nuxt/nuxt.com/issues/1228",0.7241755,{"description":2969,"labels":2970,"number":2979,"owner":2911,"repository":2912,"state":2913,"title":2980,"updated_at":2981,"url":2982,"score":2983},"### Description\n\nHello, i was wondering if its possible to create something similar to this perhaps using the existing radio-group component.\r\n\r\nExample: https://tailwindui.com/components/application-ui/forms/radio-groups\r\n\u003Cimg width=\"1201\" alt=\"Screenshot 2024-01-11 at 7 59 09 PM\" src=\"https://github.com/nuxt/ui/assets/33962719/5c1bd9cb-7c96-4306-83c5-46eda713de10\">\r\n\n\n### Additional context\n\n_No response_",[2971,2974,2977],{"name":2972,"color":2973},"duplicate","cfd3d7",{"name":2975,"color":2976},"enhancement","a2eeef",{"name":2978,"color":2945},"wontfix-v2",1221,"Radio Groups cards","2025-03-24T15:01:33Z","https://github.com/nuxt/ui/issues/1221",0.7387475,{"description":2985,"labels":2986,"number":2989,"owner":2911,"repository":2955,"state":2913,"title":2990,"updated_at":2991,"url":2992,"score":2993},"- [x] Move Revue contacts\n- [x] Subscribe form to contact Sendgrid API",[2987],{"name":2975,"color":2988},"1ad6ff",1104,"Migrate newsletter to SendGrid","2023-01-10T15:04:54Z","https://github.com/nuxt/nuxt.com/issues/1104",0.74152493,{"description":2995,"labels":2996,"number":3003,"owner":2911,"repository":2912,"state":2913,"title":3004,"updated_at":3005,"url":3006,"score":3007},"### Environment\n\n- Operating System: Darwin\n- Node Version: v20.19.0\n- Nuxt Version: -\n- CLI Version: 3.23.1\n- Nitro Version: -\n- Package Manager: pnpm@10.7.0\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nVue\n\n### Version\n\nv3.0.2\n\n### Reproduction\n\nfreshly pulled official starter template using\n```bash\nnpx giget@latest gh:nuxt-ui-pro/starter-vue . --force\n```\ncleaned components.d.ts / deleted it\nit has been recreated: but missing ALL nuxtui components:\n\n```js\n/* eslint-disable */\n// @ts-nocheck\n// Generated by unplugin-vue-components\n// Read more: https://github.com/vuejs/core/pull/3399\n// biome-ignore lint: disable\nexport {}\n\n/* prettier-ignore */\ndeclare module 'vue' {\n export interface GlobalComponents {\n LogoPro: typeof import('./src/components/LogoPro.vue')['default']\n RouterLink: typeof import('vue-router')['RouterLink']\n RouterView: typeof import('vue-router')['RouterView']\n }\n}\n```\n\n### Description\n\nThe components.d.ts file generated by `unplugin-vue-components` is incomplete.\n\n### Additional context\n\n```js\nimport { defineConfig } from 'vite'\nimport vue from '@vitejs/plugin-vue'\nimport uiPro from '@nuxt/ui-pro/vite'\n\n// https://vitejs.dev/config/\nexport default defineConfig({\n plugins: [\n vue(),\n uiPro({\n ui: {\n colors: {\n primary: 'green',\n neutral: 'slate'\n }\n },\n prefix: 'U'\n })\n ]\n})\n```\n\n### Logs\n\n```shell-script\n\n```",[2997,2998,3001,3002],{"name":2922,"color":2923},{"name":2999,"color":3000},"needs reproduction","CB47CF",{"name":2908,"color":2909},{"name":2944,"color":2945},3753,"unplugin components.d.ts not working","2025-03-31T13:04:11Z","https://github.com/nuxt/ui/issues/3753",0.7429294,{"description":3009,"labels":3010,"number":3014,"owner":2911,"repository":2912,"state":2913,"title":3015,"updated_at":3016,"url":3017,"score":3018},"### Environment\n\n- Operating System: `Linux`\n- Node Version: `v22.14.0`\n- Nuxt Version: `3.16.2`\n- CLI Version: `3.24.0`\n- Nitro Version: `2.11.8`\n- Package Manager: `npm@11.1.0`\n- Builder: `-`\n- User Config: `devtools`, `compatibilityDate`, `app`, `css`, `vite`, `ui`, `runtimeConfig`, `modules`, `i18n`\n- Runtime Modules: `@nuxt/image@1.10.0`, `@nuxt/eslint@1.3.0`, `@nuxtjs/i18n@9.4.0`, `@nuxt/ui@3.0.2`\n- Build Modules: `-`\n\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.2\n\n### Reproduction\n\nn/a\n\n### Description\n\nIt seems to me that the RadioGroup component doesnt really come with variant or indicator props even though its described in the documentation. Even when chaning it to all available options, nothing changes.\n\nI also checked source files and it appears to not be there as well.\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3011,3012,3013],{"name":2922,"color":2923},{"name":2908,"color":2909},{"name":2944,"color":2945},3765,"variant, indicator and some other props missing in RadioGroup","2025-04-01T15:20:27Z","https://github.com/nuxt/ui/issues/3765",0.7435097,["Reactive",3020],{},["Set"],["ShallowReactive",3023],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fUWBruxZ0VHVnudRESDDgt3BJNG318prGu1tGZw0R9w8":-1},"/nuxt/ui/3732"]