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