Skip to content

BosNaufal/vue-click-outside

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vue Click Outside

Vue Directive to make a click outside event, inspired by vue-clickaway

DEMO

Install

Include the vue-click-outside.js to your HTML or web page file after Vue.Js. or import it to your Javscript / Vue File.

Usage

<template>
  <div v-click-outside="clickedOutside"></div>

  <!-- You Need Delay, if you're using it together with v-if directive -->
  <div v-if="something" v-click-outside:delay="clickedOutside"></div>
</template>

<script>

  export default {

    methods: {
      hasClickedOutside(){
        alert('Clicked OutSide!')
      },
    }

  };

</script>

Thank You for Making this useful~

Hopefully this can be useful for your next projects.

Let's talk about some projects with me

Just Contact Me At:

License

MIT Copyright (c) 2016 - forever Naufal Rabbani

About

Vue Directive to make a click outside event

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages