Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
v-click-outside-x
Advanced tools
Vue V2 directive to react on clicks
outside an element.
$ npm install --save v-click-outside-x
$ yarn add v-click-outside-x
import Vue from 'vue';
import * as vClickOutside from 'v-click-outside-x';
Vue.use(vClickOutside);
<script>
export default {
methods: {
onClickOutside (event) {
console.log('Clicked outside. Event: ', event)
}
}
};
</script>
<template>
<div v-click-outside="onClickOutside"></div>
</template>
import * as vClickOutside from 'v-click-outside-x'
<script>
export default {
directives: {
clickOutside: vClickOutside.directive
},
methods: {
onClickOutside (event) {
console.log('Clicked outside. Event: ', event)
}
}
};
</script>
<template>
<div v-click-outside="onClickOutside"></div>
</template>
It is not a very common need to call event.preventDefault()
, event.stopPropagation()
or
event.stopImmediatePropagation()
for click outside event handlers.
Care should be taken when using these!
The need for capture though, is reasonably common when you want menus or dropdown to behave more like their native elements.
<template>
<!-- the click event´s propagation will be stopped -->
<div v-click-outside.stop="doThis"></div>
<!-- the click event´s default will be stopped -->
<div v-click-outside.prevent="doThat"></div>
<!-- modifiers can be chained -->
<div v-click-outside.stop.prevent="doThat"></div>
<!-- use capture mode when adding the event listener -->
<div v-click-outside.capture="doThis"></div>
</template>
By default, if no argument is supplied then click
will be used. You can specify
the event type being bound by supplying an arguments, i.e. pointerdown
.
<script>
export default {
methods: {
onClickOutside (event) {
console.log('Clicked outside. Event: ', event)
}
}
};
</script>
<template>
<div v-click-outside:pointerdown="onClickOutside"></div>
</template>
For support of the PointerEvent API, consider loading the Pointer Events Polyfill.
<script>
export default {
methods: {
onClickOutside1 (event) {
console.log('Clicked outside 1. Event: ', event)
},
onClickOutside2 (event) {
console.log('Clicked outside 2. Event: ', event)
},
onClickOutside3 (event) {
console.log('Clicked outside 3. Event: ', event)
}
}
};
</script>
<template>
<div
v-click-outside.capture="onClickOutside1"
v-click-outside:click="onClickOutside2"
v-click-outside:pointerdown.capture="onClickOutside3"
></div>
</template>
FAQs
Vue directive to react on clicks outside an element.
We found that v-click-outside-x demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.