
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
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>
<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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.