老韩哥

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

//写入方法
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')
}

posted on 2020-05-05 16:53  老韩哥  阅读(601)  评论(0)    收藏  举报