vue 2.8.2版本配置刚进入时候的默认页面方法
vue--version查看版本是2.8.2;
vue2.8.2版本配置刚进入时候的默认页面比如这里面的goods页面;
1.在路由文件下里面的index.js文件添加{path:'/',redirect:'/goods/goods'},//默认就跳转此页面
2.也可以在app.vue里面配置
this.$router.push('/goods/goods');//页面加载时跳转
详情看下面
exportdefault{ name:'app', components:{ 'v-header':header }, created(){ //this.$router.push('/goods/goods');//页面加载时跳转 } };
前提都配置了此组件路由index.js文件如下
importVuefrom'vue'; importRouterfrom'vue-router'; importgoodsfrom'../components/goods/goods'; importratingsfrom'../components/ratings/ratings'; importsellerfrom'../components/seller/seller'; Vue.use(Router); exportdefaultnewRouter({ routes:[ {path:'/',redirect:'/goods/goods'},//默认就跳转此页面 { path:'/goods/goods', name:'goods', component:goods }, { path:'/ratings/ratings', name:'ratings', component:ratings }, { path:'/seller/seller', name:'seller', component:seller } ] });
以上这篇vue2.8.2版本配置刚进入时候的默认页面方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。