Vue子组件向父组件通信

子组件向父组件通信,发送事件

//子组件<child>
this.$emit('eventName')

//父组件
<div>
    <child @eventName="func" ref="child"></child>
</div>

//在父组件调用子组件的方法
func(){
    this.$refs.child.funName()
}

猜你喜欢

转载自blog.csdn.net/creabine/article/details/79807089