demo.config.js 762 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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/crud1',
  28. icon: 'tag',
  29. title: 'CRUD 操作(基于Uniapp)',
  30. },{
  31. path: '/pages/demo/crud2',
  32. icon: 'tag',
  33. title: 'CRUD 操作(基于Uview)',
  34. },{
  35. path: '/pages/componentsA/parse/index',
  36. icon: 'loading',
  37. title: '未完待续',
  38. }]
  39. },
  40. ]