sidebar.js 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. export const sidebar = {
  2. 'components': [
  3. {
  4. text: '组件列表',
  5. items: [
  6. {text: 'HcAppConfig', link: '/components/app-config/index'},
  7. {text: '卡片', link: '/components/card/index'},
  8. {text: '副卡片', link: '/components/card-item/index'},
  9. {text: '新卡片', link: '/components/new-card/index'},
  10. {text: '选项卡片', link: '/components/tabs-simple/index'},
  11. {text: '新选项卡片', link: '/components/tab-card/index'},
  12. {text: '图标', link: '/components/icon/index'},
  13. {text: '表格', link: '/components/table/index'},
  14. {text: '分页', link: '/components/page/index'},
  15. {text: '懒加载树', link: '/components/lazy-tree/index'},
  16. {text: '全加载树', link: '/components/data-tree/index'},
  17. {text: '虚拟化树', link: '/components/tree-v2/index'},
  18. {text: '弹窗框', link: '/components/dialog/index'},
  19. {text: '新开关', link: '/components/new-switch/index'},
  20. {text: '鼠标右键菜单', link: '/components/context-menu/index'},
  21. {text: '步进器', link: '/components/counter/index'},
  22. {text: '日期时间选择器', link: '/components/date-picker/index'},
  23. {text: '自动补全输入框', link: '/components/autocomplete/index'},
  24. {text: '图片', link: '/components/img/index'},
  25. {text: '列表行', link: '/components/list-item/index'},
  26. {text: 'pdf文件预览', link: '/components/pdf/index'},
  27. {text: '文件上传', link: '/components/upload-file/index'},
  28. {text: '表单文件上传', link: '/components/form-upload/index'},
  29. {text: '抽屉', link: '/components/drawer/index'},
  30. {text: '缩放拖动弹窗', link: '/components/drag-modal/index'},
  31. {text: '拖动缩放组件', link: '/components/drag-node/index'},
  32. {text: 'Loading', link: '/components/loading/index'},
  33. {text: '小菜单', link: '/components/menu-simple/index'},
  34. {text: '无数据状态', link: '/components/no-data/index'},
  35. {text: '状态提示', link: '/components/status/index'},
  36. {text: 'Message', link: '/components/message/index'},
  37. {text: '标题栏扩展', link: '/components/page-header/index'},
  38. {text: 'online-office', link: '/components/online-office/index'},
  39. {text: 'Lottie', link: '/components/lottie/index'},
  40. ],
  41. },
  42. ],
  43. 'style': [
  44. {
  45. text: '样式说明',
  46. items: [
  47. {text: '基础说明', link: '/style/base/index'},
  48. {text: 'index.scss', link: '/style/index_scss/index'},
  49. {text: '_var.scss', link: '/style/var_scss/index'},
  50. {text: '_color.scss', link: '/style/color_scss/index'},
  51. {text: '_text.scss', link: '/style/text_scss/index'},
  52. {text: '_main.scss', link: '/style/main_scss/index'},
  53. {text: 'element.scss', link: '/style/element_scss/index'},
  54. {text: 'theme.scss', link: '/style/theme_scss/index'},
  55. {text: 'tools.scss', link: '/style/tools_scss/index'},
  56. {text: 'tree.scss', link: '/style/tree_scss/index'},
  57. ],
  58. },
  59. ],
  60. 'api': [
  61. {
  62. text: 'API函数',
  63. items: [
  64. {text: '本地缓存', link: '/api/storage/index'},
  65. {text: '发起请求', link: '/api/request/index'},
  66. {text: '扩展方法', link: '/api/tools/index'}
  67. ],
  68. },
  69. ]
  70. };