fix .prevent

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-07-09 10:38:40 +07:00
parent 0b80e047be
commit 530b0c9b7e
42 changed files with 84 additions and 84 deletions

View file

@ -515,7 +515,7 @@ onMounted(async () => {
:disable="rowIndex === 0"
:color="rowIndex === 0 ? 'grey' : 'public'"
icon="mdi-chevron-left"
@click.stop.pervent="onNavigateRow('previous')"
@click.stop.prevent="onNavigateRow('previous')"
>
<q-tooltip>อมลกอนหน</q-tooltip>
</q-btn>
@ -526,7 +526,7 @@ onMounted(async () => {
:disable="rowIndex + 1 === rowData.length"
:color="rowIndex + 1 === rowData.length ? 'grey' : 'public'"
icon="mdi-chevron-right"
@click.stop.pervent="onNavigateRow('next')"
@click.stop.prevent="onNavigateRow('next')"
>
<q-tooltip>อมลถดไป</q-tooltip>
</q-btn>