vue-click-outside-zyr
v1.0.8
Published
Vue 点击其它的事件快捷指令
Downloads
2
Readme
vue-click-outside-zyr
Vue 点击其它的事件快捷指令
Installation
$ npm install vue-click-outside
Example
<template>
<div class="box" v-click-outside="hide" ref="box">
<input type="text" @focus="show" />
<div v-show="isShow">面板</div>
</div>
</template>
<script>
export default {
data() {
return { isShow: false };
},
methods: {
show() {
this.isShow = true;
},
hide() {
this.isShow = false;
},
},
};
</script>