config.js 2.9 KB
Newer Older
H
hoodiearon 已提交
1
module.exports = {
H
asd  
hoodiearon 已提交
2
    title: '桌面运维常见问题解答手册',
H
hoodiearon 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15
    description: '如题所述,常见OA办公桌面环境故障解答',
    base: '/', //项目文件夹设置目录
    plugins: [
      // https://vuepress.github.io/zh/plugins 插件下载
      ['@vuepress/plugin-back-to-top'],//安装不了插件,建议非全局安装vue
      ['copyright', {
        noSelect: true,
        authorName:{
          "zh-CN": "hoochanlon"
        }
      }]
    ],
    themeConfig: {
H
asd  
hoodiearon 已提交
16
      repo: 'https://github.com/hoochanlon/desktop-manual/',
H
hoodiearon 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
      nav: [{ text: '跳转首页', link: '/' }],
        sidebar: [
            {
                title: 'OA办公',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['/oa-fault/oa','OA办公故障问题']]
              },
              {
                title: 'OA网络',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['/net-debug/net','OA网络环境维护']]
              },
              {
                title: '软件故障',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['/software-issue/other','办公软件使用异常']]
              },
              {
                title: '办公硬件',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['/hard-bearkdown/hard','硬件调试处理']]
              },
              {
                title: '安全防护',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['/secure/trojan','病毒防范处理']]
              },
              {
                title: '协商沟通',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['/talk/3','客户、外包、驻场']]
              },
              {
                title: '注意事项',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['notice','维护细节注意说明']]
              },
              {
                title: '致谢',   // 必要的
                collapsable: false, // 可选的, 默认值是 true,
                sidebarDepth: 1,    // 可选的, 默认值是 1
                children: [['thanks','感谢有你们在!']]
              }
            ]
          }
  }