父组件调用子组件方法: this.$r...">
美文网首页
vue 父组件调用子组件方法,更新子组件

vue 父组件调用子组件方法,更新子组件

作者: lucky_果果 | 来源:发表于2020-10-20 11:17 被阅读0次

    父组件:<Children ref="child"></Children>

    父组件调用子组件方法:

    this.$refs.child.$emit('bridge','父组件传给子组件的值')

    子组件:在mounted阶段注册上bridge的方法:

    this.$on('bridge', val=>{

    this.initChild(val)

    })

    相关文章

      网友评论

          本文标题:vue 父组件调用子组件方法,更新子组件

          本文链接:https://www.haomeiwen.com/subject/bpzrmktx.html