You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.4 KiB

6 years ago
module.exports = {
title: 'jxc-admin',
description: "jxc-admin后台管理系统文档",
host: 'localhost',
// 输出目录
6 years ago
dest: 'doc',
6 years ago
// 主题配置
themeConfig: {
smoothScroll: true,
lastUpdated: '上次更新:',
nav: [
{text: '在线预览', link: 'https://toesbieya.cn'},
{text: 'GitHub', link: 'https://github.com/toesbieya/jxc-admin'}
],
sidebar: [
'installation',
6 years ago
'start',
6 years ago
{
title: '前端',
collapsable: false,
children: [
'/frontend/',
'/frontend/layout',
'/frontend/router',
'/frontend/permission',
'/frontend/new',
'/frontend/deploy',
{
title: '组件',
collapsable: false,
children: [
'/frontend/components/abstract-table',
'/frontend/components/region-selector',
'/frontend/components/search-form',
'/frontend/components/upload-file',
6 years ago
'/frontend/components/tree-select',
6 years ago
]
},
{
title: '全局方法',
collapsable: false,
children: [
'/frontend/global-methods/bottom-tip',
'/frontend/global-methods/guide',
'/frontend/global-methods/image-viewer',
'/frontend/global-methods/puzzle-verify',
'/frontend/global-methods/signature',
]
},
'/frontend/utils',
6 years ago
'/frontend/plugins',
'/frontend/mock'
6 years ago
]
},
6 years ago
{
title:'后端',
collapsable: false,
children: [
'/backend/',
]
}
6 years ago
]
},
plugins: {
'@vuepress/pwa': {
serviceWorker: true,
updatePopup: true
},
'@vuepress/back-to-top': true
}
}