美文网首页
2018-04-04(Vue父组件获取子组件的值)

2018-04-04(Vue父组件获取子组件的值)

作者: 嘿喵heyMeow | 来源:发表于2018-04-04 11:39 被阅读0次
    问题:

    想在父组件中获取子组件PayType中的值

    解决:

    用$refs(使用子组件时添加ref='xxxx',想用值时调用this.$refs.xxxx即可得到整个子组件,数据也就能拿到了)

    代码示例(父组件):
    // html
     <PayType :payData="modalOptions" ref="payInfo"></PayType>
    
    // script
    console.log(this.$refs.payInfo);
    

    相关文章

      网友评论

          本文标题:2018-04-04(Vue父组件获取子组件的值)

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