07 | 前端框架开发流程 | 谷粒

时间:2021-02-15 12:11:54   收藏:0   阅读:0

{
path: ‘/teacher‘,
component: Layout,
redirect: ‘/teacher/table‘, //重定向跳转
name: ‘讲师管理‘,
meta: { title: ‘讲师管理‘, icon: ‘example‘ }, //title页面标题,icon头像
children: [
{
path: ‘table‘,
name: ‘讲师列表‘,
component: () => import(‘@/views/edu/teacher/list‘),//@固定用法,不能替换为../
meta: { title: ‘讲师列表‘, icon: ‘table‘ }
},
{
path: ‘save‘,
name: ‘添加讲师‘,
component: () => import(‘@/views/edu/teacher/save‘),
meta: { title: ‘添加讲师‘, icon: ‘tree‘ }
}
]
},

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!