后台跳转页面:
1 ) res.redirect( " 跳转页面路径 " )
前端跳转页面:
1 ) location .href= " 跳转页面路径 " ;
2 ) window.open("http://www. 网址.com");{这个可以更该页面大小}
Vue router 跳转和 location.href 有什么区别:
1) vue router 是 hash 改变;
2) location.herf 是页面跳转,刷新页面;
跳转页面
原文:https://www.cnblogs.com/yjzs/p/12077618.html