如何去除Vue項目中,瀏覽器URL中#的問題

在新創建的vue項目中,在使用瀏覽器進行訪問的時候,url 中總會出現# : http://localhost:8080/#/
如何去掉它,只需在路由配置js文件中,添加:mode: ‘history’,

export default new Router({
  mode: 'history',
  routes: [
    {path: '/', name: 'HelloWorld', component: HelloWorld},
    {path: '/pages01', name: 'pages01', component: pages01},
    {path: '/pages02', name: 'pages02', component: pages02}
  ]
})

示例:

在這裏插入圖片描述

Vue目錄結構

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章