Vue.js
Bus zdarzeń
Szukaj…
Wprowadzenie
Magistrale zdarzeń są użytecznym sposobem komunikacji między komponentami, które nie są bezpośrednio powiązane, tj. Nie mają relacji rodzic-dziecko.
Jest to po prostu pusta instancja vue
, której można użyć do $emit
zdarzeń lub nasłuchiwania $on
wspomnianych zdarzeniach.
Składnia
- eksportuj domyślnie nowy Vue ()
Uwagi
Użyj vuex, jeśli Twoja aplikacja zawiera wiele komponentów wymagających od siebie danych.
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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow