vm.$emit( eventName, […args] )
Vue.component('welcome-button', {
template: `
<button v-on:click="$emit('welcome')">
Нажмите для приветствия
</button>
`
})<div id="emit-example-simple">
<welcome-button v-on:welcome="sayHi"></welcome-button>
</div>new Vue({
el: '#emit-example-simple',
methods: {
sayHi: function () {
alert('Привет!')
}
}
})Last updated