一、问题

使用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
    }
  ]
})

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-09
  • 2022-12-23
  • 2022-01-12
  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案