1.0.8 • Published 10 months ago

vue-click-outside-zyr v1.0.8

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

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

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago