vue-click-outside-zyr

1.0.8 • Public • Published

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>

Readme

Keywords

Package Sidebar

Install

npm i vue-click-outside-zyr

Weekly Downloads

1

Version

1.0.8

License

ISC

Unpacked Size

6.64 kB

Total Files

10

Last publish

Collaborators

  • zhangyuru999