vue中的watch监听
watch: {
'$route'(to, from) {
if (from.name === 'addPurchase') {
}
if (to.name === 'addPurchase') {
} else {}
}
}
watch: {
'$route'(to, from) {
从copyAdvanceOrder页面进入到当前页面时
if (from.name === 'copyAdvanceOrder' || from.name === 'addAdvanceOrder') {
this.mouseOverPic()
}
}
}