0
0
Fork 0

fix: refs #7957 add missing closing brace

This commit is contained in:
Jorge Penadés 2024-12-19 13:42:48 +01:00
parent ea347338f4
commit de87acd5cc
1 changed files with 1 additions and 0 deletions

View File

@ -311,6 +311,7 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
store.data.push(val);
}
}
}
const totalRows = computed(() => (store.data && store.data.length) || 0);
const isLoading = computed(() => store.isLoading || false);