Skip to content

Commit de888ed

Browse files
committed
chore: use modelValue instead of v-model
1 parent a195ab9 commit de888ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adminforth/spa/src/components/ResourceListTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<tr class="t-header sticky z-10 top-0 text-xs bg-lightListTableHeading dark:bg-darkListTableHeading dark:text-gray-400">
1818
<td scope="col" class="p-4">
1919
<Checkbox
20-
v-model="allFromThisPageChecked"
20+
:modelValue="allFromThisPageChecked"
2121
:disabled="!rows || !rows.length"
2222
@update:modelValue="selectAll"
2323
>

adminforth/spa/src/components/ResourceListTableVirtual.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<tr class="t-header sticky z-10 top-0 text-xs bg-lightListTableHeading dark:bg-darkListTableHeading dark:text-gray-400">
2222
<td scope="col" class="p-4">
2323
<Checkbox
24-
v-model="allFromThisPageChecked"
24+
:modelValue="allFromThisPageChecked"
2525
:disabled="!rows || !rows.length"
2626
@update:modelValue="selectAll"
2727
>

0 commit comments

Comments
 (0)