在vue中,this.$emit()
的返回值是什么?
用法:
vm.emit( event, [...args] )
参数:
- { string } event
- […args]
返回值:
vm
用法:
触发当前实例上的事件,附加的参数都会传给监听器回调。
Vue.prototype.$emit = function(event) {
const vm = this;
let cbs
在vue中,this.$emit()
的返回值是什么?
用法:
vm.emit( event, [...args] )
参数:
返回值:
vm
用法:
触发当前实例上的事件,附加的参数都会传给监听器回调。
Vue.prototype.$emit = function(event) {
const vm = this;
let cbs