Files
SAFEKISO/inspond-nuxt-safekiso/base/components/DisclosureStateEmitter.vue
2026-04-07 14:50:23 +09:00

23 lines
379 B
Vue

<template>
<div v-show="false"></div>
</template>
<script>
export default {
props: {
show: {
type: Boolean,
},
},
emits: ['show', 'hide'],
watch: {
show(show) {
if (show) {
this.$emit('show');
} else {
this.$emit('hide');
}
},
},
};
</script>