| 1234567891011121314151617181920212223242526272829303132333435 |
- import type { ThemeCollectionItem } from 'vuepress-theme-plume'
- import { defineCollection } from 'vuepress-theme-plume'
- export const software: ThemeCollectionItem = defineCollection({
- type: 'doc',
- dir: 'software',
- linkPrefix: '/software/',
- title: '华菁软件',
- sidebar: [
- {
- text: '振兴MES系统',
- link:'mes'
- },
- {
- text: '振兴PDM系统',
- link:'pdm'
- },
- {
- text: '振兴WMS系统',
- link:'wms'
- },
- {
- text: '振兴APS系统',
- link:'aps'
- },
- {
- text: '振兴数字孪生系统',
- link:'digitalTwin'
- },
- {
- text: '振兴智能数据应用系统',
- link:'data'
- },
- ]
- })
|