首页 > 其他 > 详细

vue 父子传值

时间:2022-05-27 21:06:41      阅读:3      评论:0      收藏:0      [点我收藏+]

1. .sync

2.ref

this.$refs.remindPage.setNotice(this.noticeCache);
this.$refs.子组件refName.子组件api();

 

3.props

//子组件定义
    props: {
      noticeCache: {
        type: Object,
        default: function() {
          return {}
        }
      }
    },

    console.log(this.noticeCache);
//父组件传值
<components-demo
   ref="remindPage"
   :noticeCache.sync="noticeCache"
   >
   </components-demo>

 

4.$emit

vue 父子传值

原文:https://www.cnblogs.com/jy17/p/15353784.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!