page contents

Redux 和 Vuex 有什么区别,它们的共同思想?

轩辕小不懂 发布于 2021-12-29 14:04
阅读 516
收藏 0
分类:WEB前端开发
2766
Nen
Nen
- 程序员

使用 location.href= /url来跳转,简单方便,但是刷新了页面;

使用 history.pushState( /url ) ,无刷新页面,静态跳转;

引进 router ,然后使用 router.push( /url ) 来跳转,使用了 diff 算法,实现了按需加载,减少了 dom 的消耗。其实使用 router 跳转和使用

history.pushState() 没什么差别的,因为vue-router就是用了 history.pushState() ,尤其是在history模式下。

请先 登录 后评论