(vue)监听页面跳转路径$route
需求:el-steps从别的页面跳转进来怎么实现和点击同样效果 https://editor.csdn.net/md/?articleId=147930076
watch: {
'$route'(to, from) {
console.log('Route change', to.path)
if (to.path === '/Steps/ParameterRecommendation') {
this.active = 3
} else if (to.path === '/Steps/DataProcessing') {
this.active = 1
}
}
},