mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
migration(vue3): COMPILER_V_ON_NATIVE
This commit is contained in:
parent
1d2aa3387d
commit
bba1aa85c2
3 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
|||
:browse-text="$t('words.browse')"
|
||||
@input="onInput"
|
||||
@blur="$parent.$emit('touch', name)"
|
||||
@focusout.native="$parent.$emit('touch', name)"
|
||||
@focusout="$parent.$emit('touch', name)"
|
||||
/>
|
||||
</BButtonGroup>
|
||||
</template>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
:id="id"
|
||||
:options="choices"
|
||||
:required="required"
|
||||
@blur.native="$emit('blur', modelValue)"
|
||||
@blur="$emit('blur', modelValue)"
|
||||
/>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
variant="outline-dark"
|
||||
block
|
||||
menu-class="w-100"
|
||||
@keydown.native="onDropdownKeydown"
|
||||
@keydown="onDropdownKeydown"
|
||||
>
|
||||
<template #button-content>
|
||||
<YIcon iname="search-plus" /> {{ label }}
|
||||
|
|
Loading…
Reference in a new issue