migration: vue3 INSTANCE_LISTENERS

This commit is contained in:
axolotle 2024-03-11 14:40:44 +01:00
parent 1430c03a4f
commit 4b01c4e7c3
10 changed files with 2 additions and 10 deletions

View file

@ -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"

View file

@ -19,7 +19,6 @@
<Component
v-bind="$attrs"
:is="Component"
v-on="$listeners"
@apply="$emit('apply', $event)"
>
<template #tab-top>

View file

@ -13,7 +13,6 @@
<Component
v-bind="props"
:is="component"
v-on="$listeners"
:modelValue="modelValue"
@update:modelValue="$emit('update:modelValue', $event)"
:state="state"

View file

@ -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>

View file

@ -3,7 +3,6 @@
<BFormCheckbox
:checked="modelValue"
@input="$emit('update:modelValue', $event)"
v-on="$listeners"
:id="id"
:aria-describedby="$parent.id + '__BV_description_'"
switch

View file

@ -12,7 +12,6 @@
:step="step"
:trim="trim"
:autocomplete="autocomplete_"
v-on="$listeners"
@blur="$parent.$emit('touch', name)"
/>
</template>

View file

@ -5,7 +5,6 @@
:id="id"
:options="choices"
:required="required"
v-on="$listeners"
@blur.native="$emit('blur', modelValue)"
/>
</template>

View file

@ -10,7 +10,6 @@
remove-on-delete
:state="state"
:options="options"
v-on="$listeners"
@blur="$parent.$emit('touch', name)"
/>
</template>

View file

@ -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"

View file

@ -7,7 +7,6 @@
:required="required"
:state="state"
rows="4"
v-on="$listeners"
@blur="$parent.$emit('touch', name)"
/>
</template>