小说后台管理系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

25 行
548 B

  1. /** When your routing table is too long, you can split it into small modules **/
  2. import Layout from '@/layout'
  3. const basicSetting = {
  4. path: '/set-advertising',
  5. component: Layout,
  6. redirect: '/set-advertising',
  7. name: 'set-advertising',
  8. meta: {
  9. title: '广告设置',
  10. icon: 'system-management'
  11. },
  12. children: [
  13. {
  14. path: 'article',
  15. component: () => import('@/views/set-advertising/set-advertising'),
  16. name: 'articleManagement',
  17. meta: { title: '广告设置' }
  18. },
  19. ]
  20. }
  21. export default basicSetting