2020
10-09
10-09
vue设置默认首页的操作
在router.js设置如下:index就是默认页面constroutes=[//公司项目{path:'/',redirect:'/index'},{path:'/index',component:index},{path:'/example',component:example,redirect:'/edetail',children:[{path:'/edetail',component:edetail}]},{path:'/login',component:login}]不使用在根目录设置router的方法,跳转页面带不同的头部信息时容易出现问题补充知识:vue-router默认的首页渲染设置当一个vue项目的页面打开,...
继续阅读 >