VUE项目问题之:去掉url中的#/

一、问题

使用VUE路由,项目的url总是带有锚点,如下:
http://localhost:8082/#/

二、解决

修改路由文件中 index.js 文件,即 src --> router --> index.js
没修改前:
export default new Router({
  routes: [
    {
      path: '/',
      name: 'IndexPage',
      component: IndexPage
    }
  ]
})
去 #/锚点:
export default new Router({
  mode: 'history',
  routes: [
    {
      path: '/',
      name: 'IndexPage',
      component: IndexPage
    }
  ]
})

猜你喜欢

转载自blog.csdn.net/yan263364/article/details/82349774