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>
|
<template>
|
||||||
<div v-bind="$attrs" class="query-header w-100" v-on="$listeners">
|
<div v-bind="$attrs" class="query-header w-100">
|
||||||
<!-- STATUS -->
|
<!-- STATUS -->
|
||||||
<span
|
<span
|
||||||
class="status"
|
class="status"
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
<Component
|
<Component
|
||||||
v-bind="$attrs"
|
v-bind="$attrs"
|
||||||
:is="Component"
|
:is="Component"
|
||||||
v-on="$listeners"
|
|
||||||
@apply="$emit('apply', $event)"
|
@apply="$emit('apply', $event)"
|
||||||
>
|
>
|
||||||
<template #tab-top>
|
<template #tab-top>
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
<Component
|
<Component
|
||||||
v-bind="props"
|
v-bind="props"
|
||||||
:is="component"
|
:is="component"
|
||||||
v-on="$listeners"
|
|
||||||
:modelValue="modelValue"
|
:modelValue="modelValue"
|
||||||
@update:modelValue="$emit('update:modelValue', $event)"
|
@update:modelValue="$emit('update:modelValue', $event)"
|
||||||
:state="state"
|
:state="state"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<ViewBase v-bind="$attrs" v-on="$listeners" :skeleton="skeleton">
|
<ViewBase v-bind="$attrs" :skeleton="skeleton">
|
||||||
<template v-if="hasCustomTopBar" #top-bar>
|
<template v-if="hasCustomTopBar" #top-bar>
|
||||||
<slot name="top-bar" />
|
<slot name="top-bar" />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<BFormCheckbox
|
<BFormCheckbox
|
||||||
:checked="modelValue"
|
:checked="modelValue"
|
||||||
@input="$emit('update:modelValue', $event)"
|
@input="$emit('update:modelValue', $event)"
|
||||||
v-on="$listeners"
|
|
||||||
:id="id"
|
:id="id"
|
||||||
:aria-describedby="$parent.id + '__BV_description_'"
|
:aria-describedby="$parent.id + '__BV_description_'"
|
||||||
switch
|
switch
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
:step="step"
|
:step="step"
|
||||||
:trim="trim"
|
:trim="trim"
|
||||||
:autocomplete="autocomplete_"
|
:autocomplete="autocomplete_"
|
||||||
v-on="$listeners"
|
|
||||||
@blur="$parent.$emit('touch', name)"
|
@blur="$parent.$emit('touch', name)"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
:id="id"
|
:id="id"
|
||||||
:options="choices"
|
:options="choices"
|
||||||
:required="required"
|
:required="required"
|
||||||
v-on="$listeners"
|
|
||||||
@blur.native="$emit('blur', modelValue)"
|
@blur.native="$emit('blur', modelValue)"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
remove-on-delete
|
remove-on-delete
|
||||||
:state="state"
|
:state="state"
|
||||||
:options="options"
|
:options="options"
|
||||||
v-on="$listeners"
|
|
||||||
@blur="$parent.$emit('touch', name)"
|
@blur="$parent.$emit('touch', name)"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
<div class="tags-selectize">
|
<div class="tags-selectize">
|
||||||
<BFormTags
|
<BFormTags
|
||||||
v-bind="$attrs"
|
v-bind="$attrs"
|
||||||
v-on="$listeners"
|
|
||||||
:modelValue="modelValue"
|
:modelValue="modelValue"
|
||||||
@update:modelValue="$emit('update:modelValue', $event)"
|
@update:modelValue="$emit('update:modelValue', $event)"
|
||||||
:id="id"
|
:id="id"
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
:required="required"
|
:required="required"
|
||||||
:state="state"
|
:state="state"
|
||||||
rows="4"
|
rows="4"
|
||||||
v-on="$listeners"
|
|
||||||
@blur="$parent.$emit('touch', name)"
|
@blur="$parent.$emit('touch', name)"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue