简单Vue路由
0 1

Vue Router 的跳转和location.href 有哪些关键差异?

【概念释义】

router.push SPA 无整页刷新,history/hash 由路由管理,可守卫拦截。location.href 整页跳转,应用上下文销毁,,无法 keep-alive,但可跳外链。

【基础使用】

javascript
"qb-hl-comment">// SPA 内
this.$router.push("/about");

"qb-hl-comment">// 整页window.location.href = "https://other.com";
window.location.assign("/legacy.html");

【版本差异】

登录查看完整 634

回答讨论

暂无讨论,登录后可抢先发言

本题库更多题目(50)