const app = new Vue({
data() {
return {
msg: 'msg1'
}
},
created() {
this.$on('update:msg', function(...arg) {
console.log(arg)
})
},
methods:{
change() {
this.$emit('update:msg', ['update', 1, true])
}
}
}).$mount("#app")
<div id="app">
<div>{{ msg }}</div>
<button @click="change">点击</button>
</div>