vue router 中 mode 和 base 属性

首先附上官网链接:https://router.vuejs.org/zh/guide/essentials/history-mode.html
在vue的路由对象中有两个属性:mode (模式) 和 base (基路径)
vue-router 默认 是hash (#) 模式,使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。但是,有时候我们也想用history模式,而history模式是利用h5 history.pushState API 来完成 URL 跳转而无须重新加载页面。

const router = new VueRouter({ mode: 'history', // 默认是hash模式 routes: [...] })

【vue router 中 mode 和 base 属性】1.history模式下url路径:
http://www.xxx.com/user/id
hash模式下url路径:
http://www.xxx.com/#/user/id
2.base 属性
默认值: “/”,应用的基路径。例如,如果整个单页应用服务在 /app/ 下,然后 base 就应该设为 “/app/”
关于history和hash模式的却别,请移步此博客:
https://www.jianshu.com/p/9449d7605279

    推荐阅读