1.如何调用子组件的方法
直接通过this.refs.节点.方法,如:this.refs.company.getDetail()
html
<Mygs v-if="mygs" :coType="coType" :deptId="deptId" @valueParent="valueParent" ref="company" />
javascript
methods:{
getDetail(){
getDept(this.deptId).then((res) => {
this.storeForms = res.data.storeInfo;
});
},
}