diff --git a/src/runtime/components/data/Table.vue b/src/runtime/components/data/Table.vue index 85c06b6c..f9bfeb67 100644 --- a/src/runtime/components/data/Table.vue +++ b/src/runtime/components/data/Table.vue @@ -170,8 +170,8 @@ export default defineComponent({ const { column, direction } = sort.value return props.rows.slice().sort((a, b) => { - const aValue = a[column] - const bValue = b[column] + const aValue = get(a, column) + const bValue = get(b, column) if (aValue === bValue) { return 0