VUE路由去掉“#”

来源:互联网 发布:网络神曲2014 编辑:程序博客网 时间:2024/06/03 14:59

如果不想要很丑的 hash(地址栏去掉“#”),我们可以用路由的 history 模式,这种模式充分利用 history.pushState API 来完成 URL 跳转而无须重新加载页面。

const router = new VueRouter({  mode: 'history',  routes: [...]})
原创粉丝点击