vue路由变化监听
emer 发布于 2017-8-15 15:18 3101 次阅读
watch:{ $route(to,from){
// to.path这个为路径
if(to.path=="home"){
this.$store.dispatch("aa");//aa为方法名
}
alert("路由change"); } }
emer 发布于 2017-8-15 15:18 3101 次阅读
watch:{ $route(to,from){
// to.path这个为路径
if(to.path=="home"){
this.$store.dispatch("aa");//aa为方法名
}
alert("路由change"); } }