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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM