props: { mesData:{ type: Object, // 接受父组件值 required: true, }, tableLod:{ type: Function, // 接收父组件方法 required: true, }, }, computed: { isMesData() { return this.mesData // 将值装载到方法中 } }, watch: { isMesData(row) { this.$nextTick(()=>{ // 异步更新DOM数据 this.form.setFieldsValue(pick(row,'setsNo','serialNumber','weldingStatus','routeCode')) //将父组件的值装载到from表单中(建议先用Object拷贝) }) } },methods: { colse() { this.mesColse(); // 执行父组件方法 },
}
标签:computed,watch,vue2,props,组件,方法 From: https://www.cnblogs.com/ruoyushen/p/17036444.html