如何刪除殭屍事件?Vue JS如何移除殭屍事件?
當向前切換時,返回$ on事件會執行很多次。
App.vue
<template>
<input type="button" @click.prevent="click()" value="click">
<template>
<script>
export default {
methods: {
click: function(){
this.$emit('go')
}
}
}
<script>
Children.vue
<script>
export default {
methods: {
go: function() {
console.log('event received')
}
},
created: function(){
this.$parent.$on('go', this.go);
}
}
<script>
是的,這正是我需要的。謝謝。 –