Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
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,996 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.