Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
vue-events
Advanced tools
A Vue.js plugin that simplify events.
Works with both Vue 1.0
& Vue 2.0
.
$ yarn add vue-events
$ npm install vue-events
import Vue from 'vue'
import VueEvents from 'vue-events'
Vue.use(VueEvents)
window.Vue = require('vue')
require('vue-events')
Method | Params | Description | Docs |
---|---|---|---|
vm.$events.$emit | event, payload | Emit the event with the given payload. | vm.$emit |
vm.$events.emit | event, payload | Emit the event with the given payload. Alias for vm.$events.$emit | vm.$emit |
vm.$events.fire | event, payload | Emit the event with the given payload. Alias for vm.$events.$emit | vm.$emit |
vm.$events.$on | event, callback | Listen for the event with the given callback. | vm.$on |
vm.$events.on | event, callback | Listen for the event with the given callback. Alias for vm.$events.$on | vm.$on |
vm.$events.listen | event, callback | Listen for the event with the given callback. Alias for vm.$events.$on | vm.$on |
vm.$events.$off | event, callback | Remove event listener(s) for the event | vm.$off |
vm.$events.off | event, callback | Remove event listener(s) for the event. Alias for vm.$events.$off | vm.$off |
vm.$events.remove | event, callback | Remove event listener(s) for the event Alias for vm.$events.$off | vm.$off |
$events
prototype object.This plugin extends Vue.prototype
to include a new $events
object, which is a just a plain vm
that will serve as your global event bus. The $events
vm
has a couple aliases for the standard
event methods.
There are 3 methods that fire events.
Note: $events.fire
& $events.emit
are aliases for $events.$emit
new Vue({
data() {
return {
eventData: {
foo: 'baz'
}
}
},
mounted() {
this.$events.fire('testEvent', this.eventData);
this.$events.emit('testEvent', this.eventData);
this.$events.$emit('testEvent', this.eventData);
}
})
There are 3 methods that register event listeners.
Note: $events.listen
& $events.on
are aliases for $events.$on
.
new Vue({
mounted() {
this.$events.listen('testEvent', eventData => console.log(eventData));
this.$events.on('testEvent', eventData => console.log(eventData));
this.$events.$on('testEvent', eventData => console.log(eventData));
}
})
There are 3 methods that remove event listeners.
Note: $events.off
& $events.remove
are aliases for $events.$off
.
new Vue({
mounted() {
this.$events.on('testEvent', eventData => console.log(eventData));
},
beforeDestroy() {
this.$events.$off('testEvent')
this.$events.off('testEvent')
this.$events.remove('testEvent')
}
})
If you'd like to demo vue-events
try vue-mix
FAQs
Easy event handling for Vue applications.
The npm package vue-events receives a total of 5,136 weekly downloads. As such, vue-events popularity was classified as popular.
We found that vue-events 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.