前提:如下图,进入页面时,需要显示商品栏及热销榜的相关部分
解决方法:对Router进行重定向。
目录文件:router.js
修改如下:在相关path后使用redirect(redirect中写需要内容的路由,具体可查看vue官网)属性:
routes: [{
path: '/',
redirect:'/goodspage',
name: 'mainpage',
component: MainPage
}]