software.ts 699 B

1234567891011121314151617181920212223242526272829303132333435
  1. import type { ThemeCollectionItem } from 'vuepress-theme-plume'
  2. import { defineCollection } from 'vuepress-theme-plume'
  3. export const software: ThemeCollectionItem = defineCollection({
  4. type: 'doc',
  5. dir: 'software',
  6. linkPrefix: '/software/',
  7. title: '华菁软件',
  8. sidebar: [
  9. {
  10. text: '振兴MES系统',
  11. link:'mes'
  12. },
  13. {
  14. text: '振兴PDM系统',
  15. link:'pdm'
  16. },
  17. {
  18. text: '振兴WMS系统',
  19. link:'wms'
  20. },
  21. {
  22. text: '振兴APS系统',
  23. link:'aps'
  24. },
  25. {
  26. text: '振兴数字孪生系统',
  27. link:'digitalTwin'
  28. },
  29. {
  30. text: '振兴智能数据应用系统',
  31. link:'data'
  32. },
  33. ]
  34. })