父组件传值:
<Setting :userInfo.sync="userInfo"/>
子组件接收
props: { userInfo: { type: JSON, // 指定props的类型为Array default: () => {} // 提供一个默认值,以防父组件没有传递该prop } } ,
在watch中监听
watch: {//正确给 cData 赋值的 方法userInfo: function(newVal,oldVal){this.userData = newVal; //newVal即是userDatanewVal&& this.randerView(); //newVal存在的话执行randerView函数}},
函数执行原来mounted的操作
methods:{randerView(){//TODO}}