加这个是刷新回到首页
mounted:function(){
this.$router.push('/home');
}
怎么改成刷新回到当前路由根目录
加这个是刷新回到首页
mounted:function(){
this.$router.push('/home');
}
怎么改成刷新回到当前路由根目录
可以使用router提供的matched获取path
mounted:function(){
var path = this.$route.matched[1].path;
this.$router.push(path);
}
5 回答4.9k 阅读✓ 已解决
4 回答3.1k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
4 回答4.4k 阅读✓ 已解决
4 回答1.9k 阅读✓ 已解决
2 回答2.6k 阅读✓ 已解决
2 回答2.6k 阅读✓ 已解决