vue导航条怎样去掉#

VUE默认是hash浏览模式,换成history可以去掉#

export default new Router({
  mode: 'history',
  routes: []
  })

 

你可能感兴趣的