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