12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- module.exports = {
- title: 'BDTP-数据服务',
- description: 'Just playing around',
- plugins: ['@vuepress/back-to-top'],
- themeConfig: {
- nav: [
- { text: '主页', link: '/' },
- { text: '通用说明文档', link: '/utils/common' },
- { text: '物理世界', link: '/rwd/' },
- { text: '知识库', link: '/dic/' }
- ],
- sidebarDepth: 2,
- displayAllHeaders: true,
- sidebar: {
- '/utils/common': [
- {
- title: '通用说明文档',
- collapsable: false,
- children: [{ title: '通用说明文档', path: '/utils/common' }]
- }
- ],
- '/dic': [
- {
- title: '知识库接口文档',
- collapsable: false,
- children: [{ title: '接口文档', path: '/dic/dic_api' }]
- },
- {
- title: '知识库数据结构说明',
- collapsable: false,
- children: [{ title: '数据结构说明', path: '/dic/data_structure_description' }]
- }
- ],
- '/rwd': [
- {
- title: '物理世界接口文档',
- collapsable: false,
- children: [{ title: '接口文档', path: '/rwd/rwd_api' }]
- },
- {
- title: '物理世界数据结构说明',
- collapsable: false,
- children: [{ title: '数据结构说明', path: '/rwd/data_structure_description' }]
- }
- ],
- }
- }
- }
|