| 123456789101112131415 |
- import type { ThemeCollectionItem } from 'vuepress-theme-plume'
- import { defineCollection } from 'vuepress-theme-plume'
- export const companyProfile: ThemeCollectionItem = defineCollection({
- type: 'doc',
- dir: 'profile',
- title: '公司简介',
- linkPrefix: '/profile/',
- sidebar: [
- {
- text: '公司简介',
- link:'profile'
- }
- ],
- })
|