demo.config.js 649 B

123456789101112131415161718192021222324252627282930313233343536
  1. export default [{
  2. groupName: '基础功能',
  3. list: [{
  4. path: '/pages/demo/storage',
  5. icon: 'cell',
  6. title: 'Storage 操作',
  7. }, {
  8. path: '/pages/demo/vuex',
  9. icon: 'sticky',
  10. title: 'Vuex 操作',
  11. }]
  12. },
  13. {
  14. groupName: '网络功能',
  15. list: [{
  16. path: '/pages/demo/mock',
  17. icon: 'layout',
  18. title: 'Mock 调用',
  19. }, {
  20. path: '/pages/demo/request',
  21. icon: 'tabbar',
  22. title: 'API 调用',
  23. }]
  24. }, {
  25. groupName: '业务功能',
  26. list: [{
  27. path: '/pages/demo/crud',
  28. icon: 'tag',
  29. title: 'CRUD 操作',
  30. },{
  31. path: '/pages/componentsA/parse/index',
  32. icon: 'loading',
  33. title: '未完待续',
  34. }]
  35. },
  36. ]