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')"
|
:browse-text="$t('words.browse')"
|
||||||
@input="onInput"
|
@input="onInput"
|
||||||
@blur="$parent.$emit('touch', name)"
|
@blur="$parent.$emit('touch', name)"
|
||||||
@focusout.native="$parent.$emit('touch', name)"
|
@focusout="$parent.$emit('touch', name)"
|
||||||
/>
|
/>
|
||||||
</BButtonGroup>
|
</BButtonGroup>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
:id="id"
|
:id="id"
|
||||||
:options="choices"
|
:options="choices"
|
||||||
:required="required"
|
:required="required"
|
||||||
@blur.native="$emit('blur', modelValue)"
|
@blur="$emit('blur', modelValue)"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
variant="outline-dark"
|
variant="outline-dark"
|
||||||
block
|
block
|
||||||
menu-class="w-100"
|
menu-class="w-100"
|
||||||
@keydown.native="onDropdownKeydown"
|
@keydown="onDropdownKeydown"
|
||||||
>
|
>
|
||||||
<template #button-content>
|
<template #button-content>
|
||||||
<YIcon iname="search-plus" /> {{ label }}
|
<YIcon iname="search-plus" /> {{ label }}
|
||||||
|
|
Loading…
Reference in a new issue