在router/index.js 加上 mode: ‘history’,
例子:

mode: 'history',
routes: [
  {
    path: '/', //首页
    name: 'HelloWorld',
    component: HelloWorld
  },

如果你是这样定义路由的,你可以

const routes =  [
    {
        path:'/',
        redirect:'',
        component:Index
    }
]
const router = new VueRouter({
  mode:'history',  
  routes
})
Logo

前往低代码交流专区

更多推荐