From f9ac9dad146a7494fda87c1adfa7ed6e8d3245d5 Mon Sep 17 00:00:00 2001 From: Jakob <45796033+JakobJar@users.noreply.github.com> Date: Fri, 24 Oct 2025 22:57:25 +0200 Subject: [PATCH] Update Table.vue fix(Table): Fix data reactivity --- src/runtime/components/Table.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/runtime/components/Table.vue b/src/runtime/components/Table.vue index 7fbe8e76bc..9ca5adaa4f 100644 --- a/src/runtime/components/Table.vue +++ b/src/runtime/components/Table.vue @@ -327,7 +327,9 @@ const tableRef = ref(null) const tableApi = useVueTable({ ...reactiveOmit(props, 'as', 'data', 'columns', 'virtualize', 'caption', 'sticky', 'loading', 'loadingColor', 'loadingAnimation', 'class', 'ui'), - data, + get data() { + return data.value + }, get columns() { return columns.value },