vue-router 默认的首页渲染设置
path: '/',
component: () => import('../layout/index'), // 原来引用的地址
redirect:'/welcome', // 重定位后页面加载的页面
原来默认页面没有内容,想默认页面加载到欢迎页
path: '/',
component: () => import('../layout/index'), // 原来引用的地址
redirect:'/welcome', // 重定位后页面加载的页面
原来默认页面没有内容,想默认页面加载到欢迎页