computed: {
// 监听以下参数变化
arguments() {
const { shipCoId, shippingAgentId, configType, type, shipCoName } = this
return {
shipCoId,
configType,
type,
shippingAgentId,
shipCoName
}
}
},
watch: {
// 监听切换事件,触发保存
arguments(newVal, oldVal) {
if (oldVal.shipCoId && oldVal.configType && oldVal.type && oldVal.shippingAgentId) {
this.switchSave(oldVal)
}
}
},
VUE 监听多个参数变化,用于多个条件任意一个变化触发事件
最新推荐文章于 2024-08-30 12:06:43 发布