config.js 939 B

1234567891011121314151617181920212223242526
  1. module.exports = {
  2. title: '数据中台',
  3. description: 'Just playing around',
  4. plugins: ['@vuepress/back-to-top'],
  5. themeConfig: {
  6. nav: [{ text: '主页', link: '/' }, { text: '物理世界', link: '/rwd/' }],
  7. sidebarDepth: 1,
  8. displayAllHeaders: true,
  9. sidebar: {
  10. '/rwd': [
  11. {
  12. title: '定义数据',
  13. collapsable: false,
  14. children: [{ title: '类型定义', path: '/rwd/def_class' }, { title: '信息点定义', path: '/rwd/def_funcid' }]
  15. },
  16. {
  17. title: '实例数据',
  18. collapsable: false,
  19. children: [{ title: '对象数据', path: '/rwd/instance_object' }, { title: '关系数据', path: '/rwd/instance_relation' }]
  20. },
  21. { title: 'IOT', path: '/rwd/iot' }
  22. ]
  23. }
  24. }
  25. }