/
githubmirror
/
vue-element-admin
Обзор
Документация
Войти
/
githubmirror
/
vue-element-admin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/router/modules/table.js
41 строка
1013 B
花裤衩
chore: remove i18n (#1828)
05 май 2019, 11:49
Не верифицирован
05 май 2019, 11:49
00a19db
Код
Авторство
О чём код?
/** When your routing table is too long, you can split it into small modules **/ import Layout from '@/layout' const tableRouter = { path: '/table', component: Layout, redirect: '/table/complex-table', name: 'Table', meta: { title: 'Table', icon: 'table' }, children: [ { path: 'dynamic-table', component: () => import('@/views/table/dynamic-table/index'), name: 'DynamicTable', meta: { title: 'Dynamic Table' } }, { path: 'drag-table', component: () => import('@/views/table/drag-table'), name: 'DragTable', meta: { title: 'Drag Table' } }, { path: 'inline-edit-table', component: () => import('@/views/table/inline-edit-table'), name: 'InlineEditTable', meta: { title: 'Inline Edit' } }, { path: 'complex-table', component: () => import('@/views/table/complex-table'), name: 'ComplexTable', meta: { title: 'Complex Table' } } ] } export default tableRouter