//写入方法
app.$on('reduce',function(){
this.count--
})
// 调用
function reduce(){
app.$emit('reduce')
}
//写入方法
app.$once('reduceOnce',function(){
this.count--
})
// 调用
function reduceOnce(){
app.$emit('reduceOnce')
}
// 关闭事件 关闭哪个事件
function off(){
app.$off('reduce')
}
浙公网安备 33010602011771号