companyProfile.ts 360 B

123456789101112131415
  1. import type { ThemeCollectionItem } from 'vuepress-theme-plume'
  2. import { defineCollection } from 'vuepress-theme-plume'
  3. export const companyProfile: ThemeCollectionItem = defineCollection({
  4. type: 'doc',
  5. dir: 'profile',
  6. title: '公司简介',
  7. linkPrefix: '/profile/',
  8. sidebar: [
  9. {
  10. text: '公司简介',
  11. link:'profile'
  12. }
  13. ],
  14. })