Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH 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 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 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() or event.stopPropagation() 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"></adiv
<!-- 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.
The npm package v-click-outside-x receives a total of 8,431 weekly downloads. As such, v-click-outside-x popularity was classified as popular.
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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.