index.ts 359 B

1234567891011
  1. import { defineCollections, type ThemeCollections } from 'vuepress-theme-plume'
  2. import { companyProfile } from './companyProfile.js'
  3. import { hardware } from './hardware.js'
  4. import { software } from './software.js'
  5. // 各板块左侧边栏配置
  6. export const zhCollections: ThemeCollections = defineCollections([
  7. hardware,
  8. software,
  9. companyProfile,
  10. ])