\n4. add items to array \n \u003Ctempalte>\n \u003CUButton label=\"add\" @click=\"addItem\" />\n\n\n \u003CScript setup>\n const addItem = () => { items.value.push(\"Done\")}\n5. check table rows\n\n\nActual Result\nnew item is added to array but not in table until nex hot reload\n\nExpected result\nnew item should be added to table rows, as NuxUI V2\n\n\nnote: same issue adding colums props\n\n### Description\n\nUTable is not showing new items added to reactive array used for data until nex hot module reload\n\n\nhttps://codesandbox.io/p/devbox/fancy-hill-5fr65h?workspaceId=ws_Xcg6XEDPVvQDQh4Bj2yVGA\n\n\n### Additional context\n\n\u003Ctemplate>\n \u003CUContainer>\n \u003CUButton label=\"add\" @click=\"addItem\" />\n \u003CUTable :data= \"items\"/>\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nconst items = ref([\"Backlog\", \"Todo\", \"In Progress\" ]);\n\nconst addItem = () => {\n // pushing done to items array is no updated in table rows\n items.value.push(\"Done\")\n console.log(items.value)\n\n // Work arrond.\n // create a new arry reference an then assing it to items\n // this way new row is being added to table\n // const arr = items.value\n // items.value = [...arr]\n }\n\u003C/script>\n\n### Logs\n\n```shell-script\n\n```",[2890,2893,2896],{"name":2891,"color":2892},"bug","d73a4a",{"name":2894,"color":2895},"v3","49DCB8",{"name":2897,"color":2898},"triage","ffffff",3732,"ui","closed","[Table] new item added to array is not rendered in table","2025-03-30T08:41:27Z","https://github.com/nuxt/ui/issues/3732",0.69384456,{"description":2907,"labels":2908,"number":2913,"owner":2872,"repository":2872,"state":2901,"title":2914,"updated_at":2915,"url":2916,"score":2917},"### Environment\n\n------------------------------\r\n- Operating System: Windows_NT\r\n- Node Version: v20.12.2\r\n- Nuxt Version: 3.9.0\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.1\r\n- Package Manager: npm@10.5.0\r\n- Builder: -\r\n- User Config: app, site, robots, sitemap, devtools, ogImage, css, postcss, modules, build, vite\r\n- Runtime Modules: nuxt-icon@0.6.10, @nuxt/image@1.5.0, @nuxtjs/seo@2.0.0-rc.10\r\n- Build Modules: -\r\n------------------------------\r\n\n\n### Reproduction\n\n\r\nhttps://github.com/nuxt/nuxt/assets/68179477/c0ff6166-bd48-4c99-b868-f0a98de82672\r\n\r\n\n\n### Describe the bug\n\nundefined is not an object (evaluating'uc.matchAll'\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2909,2912],{"name":2910,"color":2911},"3.x","29bc7f",{"name":2866,"color":2867},26982,"When opened in some browsers, it displays: undefined is not an object (evaluating'uc.matchAll'","2024-04-29T05:24:53Z","https://github.com/nuxt/nuxt/issues/26982",0.7235952,{"description":2919,"labels":2920,"number":2925,"owner":2872,"repository":2900,"state":2901,"title":2926,"updated_at":2927,"url":2928,"score":2929},"### Description\n\nHello, I just wanted to overwrite shadow-sm with another shadow in the card root slot.\nBut I failed to do so. I tried the :ui way and the app.config.ts way but in both cases the new class \"shadow-card\" ended up BEHIND \"shadow-sm\".\n\n```\n card: {\n slots: {\n root: \"shadow-card\",\n },\n },\n```\n\nSo shadow-card always gets overwritten by shadow-sm cause the code always ends up like this:\n```\n\u003Cdiv class=\"bg-[var(--ui-bg)] ring ring-[var(--ui-border)] divide-y divide-[var(--ui-border)] rounded-[calc(var(--ui-radius)*2)] shadow-sm shadow-card\">\n```\n\nso how can I overwrite shadow-sm here?",[2921,2924],{"name":2922,"color":2923},"question","d876e3",{"name":2894,"color":2895},2936,"Overwrite css classes of slots","2025-01-08T16:26:22Z","https://github.com/nuxt/ui/issues/2936",0.73719156,{"description":2931,"labels":2932,"number":2938,"owner":2872,"repository":2900,"state":2901,"title":2939,"updated_at":2940,"url":2941,"score":2942},"### Environment\n\n- Operating System: Windows_NT\n- Node Version: v22.13.0\n- Nuxt Version: 3.16.0\n- CLI Version: 3.23.0\n- Nitro Version: 2.11.6\n- Package Manager: npm@10.9.2\n- Builder: -\n- User Config: devtools, modules, css, future, compatibilityDate, runtimeConfig\n- Runtime Modules: @nuxt/ui@3.0.0, @nuxt/eslint@1.2.0, nuxt-echarts@0.2.6\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0\n\n### Reproduction\n\n```vue\n\u003Cscript setup lang=\"ts\">\nconst data = ref([\n {\n id: '0',\n },\n])\n\nconst add = () => {\n data.value.push({\n id: `${data.value.length}`,\n })\n console.log(data.value)\n}\n\n\u003C/script>\n\n\u003Ctemplate>\n \u003Cdiv>\n \u003CUTable :data=\"data\" class=\"flex-1\"/>\n \u003CUButton\n @click=\"add\">Add\n \u003C/UButton>\n \u003C/div>\n\u003C/template>\n```\n\n### Description\n\nAfter click the \"add\" button, it will push a new data into dataRef, but the Table will not rendering new data\n\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2933,2934,2937],{"name":2891,"color":2892},{"name":2935,"color":2936},"duplicate","cfd3d7",{"name":2894,"color":2895},3597,"UTable data updated but UI will not update","2025-03-24T02:11:33Z","https://github.com/nuxt/ui/issues/3597",0.7374285,{"labels":2944,"number":2951,"owner":2872,"repository":2872,"state":2901,"title":2952,"updated_at":2953,"url":2954,"score":2955},[2945,2947,2948],{"name":2946,"color":2898},"stale",{"name":2866,"color":2867},{"name":2949,"color":2950},"2.x","d4c5f9",10102,"Cannot read properties of undefined (reading '_isDestroyed')","2024-03-11T18:59:31Z","https://github.com/nuxt/nuxt/issues/10102",0.7449354,{"description":2957,"labels":2958,"number":2961,"owner":2872,"repository":2872,"state":2901,"title":2962,"updated_at":2963,"url":2964,"score":2965},"\u003Cimg width=\"731\" alt=\"image\" src=\"https://user-images.githubusercontent.com/26525599/210810207-7c33fa46-23f9-4666-9c0e-0c632fc9e0cc.png\">\r\n",[2959,2960],{"name":2866,"color":2867},{"name":2949,"color":2950},10883,"Nodejs19 cannot run. It's a strange bug","2023-01-22T15:48:35Z","https://github.com/nuxt/nuxt/issues/10883",0.7456155,{"description":2967,"labels":2968,"number":2974,"owner":2872,"repository":2900,"state":2901,"title":2975,"updated_at":2976,"url":2977,"score":2978},"### 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```",[2969,2970,2972,2973],{"name":2891,"color":2892},{"name":2869,"color":2971},"CB47CF",{"name":2894,"color":2895},{"name":2897,"color":2898},3753,"unplugin components.d.ts not working","2025-03-31T13:04:11Z","https://github.com/nuxt/ui/issues/3753",0.746606,{"labels":2980,"number":2984,"owner":2872,"repository":2872,"state":2901,"title":2985,"updated_at":2986,"url":2987,"score":2988},[2981,2982,2983],{"name":2946,"color":2898},{"name":2866,"color":2867},{"name":2949,"color":2950},7834,"Cannot read property 'public' of undefined","2023-01-22T15:36:04Z","https://github.com/nuxt/nuxt/issues/7834",0.7484185,["Reactive",2990],{},["Set"],["ShallowReactive",2993],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f3ZL7oIsVZ4D_tt0uQvs1ctrUXf9LuIneVPC4ZV-Ce0M":-1},"/nuxt/ui/3923"]