1.this.$router.push(’/login’) —未实现
// 错误码为401-未登录状态 跳转到登录页面
if (err.response.status === 401) {
this.$router.push("/login");
}
2.window.location.href方法
<script type="text/javascript">
window.location.href="http://www.baidu.com/";
</script>
3.router-link跳转
<router-link to="/login.js">跳转</router-link>
4.a标签跳转
<a href="#/home/index">跳转到主页</a>
5.实现后退功能
methods: {
goback() {
// 实现后退功能
this.$router.go(-1)
}
}