原生路由跳转
1 2 3 4 5 6 7 8 9
| window.location.href = uri(path) // 完整地址
window.location.hash = uri(path) // 锚点地址
window.location.reload()
window.history.go(0)
document.execCommand('Refresh')
|
Vue路由跳转
1 2 3
| this.$router.push({ name: 'login' });
|
详见 个人项目 shrsBack
涉及 Vue.router