vue 地址栏如何去掉#

vue 地址栏去掉#

可以使用路由的history模式

const router = new VueRouter({
mode: ‘history’,//history去掉#,hash是有#的
routes: […]
})

你可能感兴趣的:(小知识点细节)