Vue.js
Bus degli eventi
Ricerca…
introduzione
I bus di eventi sono un modo utile di comunicare tra componenti che non sono direttamente correlati, cioè non hanno alcuna relazione genitore-figlio.
È solo un'istanza vue
vuota, che può essere utilizzata per $emit
eventi o ascoltare $on
eventi citati.
Sintassi
- export default new Vue ()
Osservazioni
Usa vuex se la tua applicazione ha molti componenti che richiedono i dati l'uno dell'altro.
EventBus
// setup an event bus, do it in a separate js file
var bus = new Vue()
// imagine a component where you require to pass on a data property
// or a computed property or a method!
Vue.component('card', {
template: `<div class='card'>
Name:
<div class='margin-5'>
<input v-model='name'>
</div>
<div class='margin-5'>
<button @click='submit'>Save</button>
</div>
</div>`,
data() {
return {
name: null
}
},
methods: {
submit() {
bus.$emit('name-set', this.name)
}
}
})
// In another component that requires the emitted data.
var data = {
message: 'Hello Vue.js!'
}
var demo = new Vue({
el: '#demo',
data: data,
created() {
console.log(bus)
bus.$on('name-set', (name) => {
this.message = name
})
}
})
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow