fix .prevent
This commit is contained in:
parent
0b80e047be
commit
530b0c9b7e
42 changed files with 84 additions and 84 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue