fix .prevent
This commit is contained in:
parent
0b80e047be
commit
530b0c9b7e
42 changed files with 84 additions and 84 deletions
|
|
@ -199,7 +199,7 @@ onMounted(() => {
|
|||
"
|
||||
clickable
|
||||
v-close-popup
|
||||
@click.pervent="onRedirectToDetail('edit', props.row.id)"
|
||||
@click.prevent="onRedirectToDetail('edit', props.row.id)"
|
||||
>
|
||||
<q-item-section>
|
||||
<div class="row items-center">
|
||||
|
|
@ -219,7 +219,7 @@ onMounted(() => {
|
|||
v-if="checkPermission($route)?.attrIsGet"
|
||||
clickable
|
||||
v-close-popup
|
||||
@click.pervent="onRedirectToDetail('view', props.row.id)"
|
||||
@click.prevent="onRedirectToDetail('view', props.row.id)"
|
||||
>
|
||||
<q-item-section>
|
||||
<div class="row items-center">
|
||||
|
|
@ -239,7 +239,7 @@ onMounted(() => {
|
|||
v-if="checkPermission($route)?.attrIsCreate"
|
||||
clickable
|
||||
v-close-popup
|
||||
@click.pervent="onCopy(props.row.id)"
|
||||
@click.prevent="onCopy(props.row.id)"
|
||||
>
|
||||
<q-item-section>
|
||||
<div class="row items-center">
|
||||
|
|
@ -263,7 +263,7 @@ onMounted(() => {
|
|||
"
|
||||
clickable
|
||||
v-close-popup
|
||||
@click.pervent="onCancel(props.row.id)"
|
||||
@click.prevent="onCancel(props.row.id)"
|
||||
>
|
||||
<q-item-section>
|
||||
<div class="row items-center">
|
||||
|
|
@ -286,7 +286,7 @@ onMounted(() => {
|
|||
"
|
||||
clickable
|
||||
v-close-popup
|
||||
@click.pervent="onReCommand(props.row.id)"
|
||||
@click.prevent="onReCommand(props.row.id)"
|
||||
>
|
||||
<q-item-section>
|
||||
<div class="row items-center">
|
||||
|
|
@ -303,7 +303,7 @@ onMounted(() => {
|
|||
store.tabsMain === 'CANCEL' &&
|
||||
checkPermission($route)?.attrIsDelete
|
||||
"
|
||||
@click.pervent="onDeleteCommand(props.row.id)"
|
||||
@click.prevent="onDeleteCommand(props.row.id)"
|
||||
>
|
||||
<q-item-section>
|
||||
<div class="row items-center">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue