mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
migration: vue3 INSTANCE_LISTENERS
This commit is contained in:
parent
1430c03a4f
commit
4b01c4e7c3
10 changed files with 2 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div v-bind="$attrs" class="query-header w-100" v-on="$listeners">
|
||||
<div v-bind="$attrs" class="query-header w-100">
|
||||
<!-- STATUS -->
|
||||
<span
|
||||
class="status"
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
<Component
|
||||
v-bind="$attrs"
|
||||
:is="Component"
|
||||
v-on="$listeners"
|
||||
@apply="$emit('apply', $event)"
|
||||
>
|
||||
<template #tab-top>
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
<Component
|
||||
v-bind="props"
|
||||
:is="component"
|
||||
v-on="$listeners"
|
||||
:modelValue="modelValue"
|
||||
@update:modelValue="$emit('update:modelValue', $event)"
|
||||
:state="state"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<ViewBase v-bind="$attrs" v-on="$listeners" :skeleton="skeleton">
|
||||
<ViewBase v-bind="$attrs" :skeleton="skeleton">
|
||||
<template v-if="hasCustomTopBar" #top-bar>
|
||||
<slot name="top-bar" />
|
||||
</template>
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
<BFormCheckbox
|
||||
:checked="modelValue"
|
||||
@input="$emit('update:modelValue', $event)"
|
||||
v-on="$listeners"
|
||||
:id="id"
|
||||
:aria-describedby="$parent.id + '__BV_description_'"
|
||||
switch
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
:step="step"
|
||||
:trim="trim"
|
||||
:autocomplete="autocomplete_"
|
||||
v-on="$listeners"
|
||||
@blur="$parent.$emit('touch', name)"
|
||||
/>
|
||||
</template>
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
:id="id"
|
||||
:options="choices"
|
||||
:required="required"
|
||||
v-on="$listeners"
|
||||
@blur.native="$emit('blur', modelValue)"
|
||||
/>
|
||||
</template>
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
remove-on-delete
|
||||
:state="state"
|
||||
:options="options"
|
||||
v-on="$listeners"
|
||||
@blur="$parent.$emit('touch', name)"
|
||||
/>
|
||||
</template>
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
<div class="tags-selectize">
|
||||
<BFormTags
|
||||
v-bind="$attrs"
|
||||
v-on="$listeners"
|
||||
:modelValue="modelValue"
|
||||
@update:modelValue="$emit('update:modelValue', $event)"
|
||||
:id="id"
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
:required="required"
|
||||
:state="state"
|
||||
rows="4"
|
||||
v-on="$listeners"
|
||||
@blur="$parent.$emit('touch', name)"
|
||||
/>
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue