vue去掉地址栏# 方法

超简单

export default new Router({
  //将mode 设置为‘history‘ 即可。默认情况是’hash’ 所以会有丑陋的#
  mode: 'history',
  routes: [
    {
      path: '/',
      name: 'Home',
      component: Home
    }
  ]
})

猜你喜欢

转载自www.cnblogs.com/ximiximi-blog/p/10536095.html