/
githubmirror
/
vue-element-admin
Обзор
Документация
Войти
/
githubmirror
/
vue-element-admin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/router/modules/charts.js
36 строк
834 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 chartsRouter = { path: '/charts', component: Layout, redirect: 'noRedirect', name: 'Charts', meta: { title: 'Charts', icon: 'chart' }, children: [ { path: 'keyboard', component: () => import('@/views/charts/keyboard'), name: 'KeyboardChart', meta: { title: 'Keyboard Chart', noCache: true } }, { path: 'line', component: () => import('@/views/charts/line'), name: 'LineChart', meta: { title: 'Line Chart', noCache: true } }, { path: 'mix-chart', component: () => import('@/views/charts/mix-chart'), name: 'MixChart', meta: { title: 'Mix Chart', noCache: true } } ] } export default chartsRouter