We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d234737 commit 56b3516Copy full SHA for 56b3516
resources/js/Pages/Admin/Users/Index.vue
@@ -45,14 +45,10 @@ const {
45
filter,
46
sort,
47
hardReset,
48
-} = useLazyDataTable(
49
- {
50
- name: { value: null, matchMode: FilterMatchMode.CONTAINS },
51
- email: { value: null, matchMode: FilterMatchMode.CONTAINS },
52
- },
53
- ['users'],
54
- props.users.per_page
55
-);
+} = useLazyDataTable('users', {
+ name: { value: null, matchMode: FilterMatchMode.CONTAINS },
+ email: { value: null, matchMode: FilterMatchMode.CONTAINS },
+}, props.users.per_page);
56
</script>
57
58
<template>
0 commit comments