@netsells/vue-outside-events
v0.1.0
Published
[](https://badge.fury.io/js/%40netsells%2Fvue-outside-events) [](https://travis-ci.com/netsell
Keywords
Readme
Vue Outside Events
Listen to events outside of the component
Installation
yarn add @netsells/vue-outside-eventsimport Vue from 'vue';
import OutsideEvents from '@netsells/vue-outside-events';
// register globally
Vue.component('OutsideEvents', OutsideEvents)
// or locally
export default {
components: { OutsideEvents },
// rest of your component
}Usage
<outside-events @click="handleOutsideClick">
Click somewhere else!
</outside-events>