路由重定向redirect

1.router下index

配置映射规则中新增一个对象

  {
    // redirect路由重定向
    path:'',     
    redirect:'/home' //重定向地址
  }

2.history

因为默认是hash地址,url栏中不美观

http://localhost:8080/home#/home

改变history模式

router下index

const router = new VueRouter({    //步骤3创建实例
  routes,                 //步骤4挂载路由映射
  mode:'history'
})

 

posted @ 2021-06-28 17:10  ajaXJson  阅读(166)  评论(0编辑  收藏  举报