export default { props: { value: { type: Boolean } }, computed: { visible: { get() { return this.value }, set(val) { this.$emit('input', val) } } } }