no message

Former-commit-id: 9c99fa78c3e9d9453e748436f0145eb22284db16
Former-commit-id: 514ae0d6194941cd08584367b1970c2e610d99d5
Former-commit-id: beaede8116f4791cdf772b2848f849b04e1a6ee9
This commit is contained in:
liyang
2018-06-03 19:30:57 +08:00
parent 165ae5d6a2
commit 88bcdd6d6f
24 changed files with 1308 additions and 1 deletions

93
docs/.vuepress/config.js Normal file
View File

@@ -0,0 +1,93 @@
module.exports = {
base: '/d2admin-vue-element/',
locales: {
'/': {
lang: 'en-US',
title: 'D2 Admin',
description: 'An elegant template for management system'
},
'/zh/': {
lang: 'zh-CN',
title: 'D2 Admin',
description: '做一个优雅的管理系统模板'
}
},
themeConfig: {
// 项目仓库地址
repo: 'https://github.com/FairyEver/d2admin-vue-element',
// 自定义仓库链接文字
repoLabel: '查看源码',
// 文档不是放在仓库的根目录下
docsDir: 'docs',
// 默认是 false, 设置为 true 来启用
editLinks: true,
// 多国语言
locales: {
'/': {
selectText: 'Languages',
label: 'English',
editLinkText: 'Edit this page on GitHub',
lastUpdated: 'Last update'
},
'/zh/': {
selectText: '选择语言',
label: '简体中文',
editLinkText: '在 GitHub 上编辑此页',
lastUpdated: '最后更新',
nav: [
{ text: '指南', link: '/zh/guide/' },
{ text: '插件', link: '/zh/plugins/' },
{ text: '组件', link: '/zh/components/' },
{ text: '下载', link: 'https://github.com/FairyEver/d2admin-vue-element/releases' }
],
sidebar: {
'/zh/guide/': sideBarGuide('指南'),
'/zh/plugins/': sideBarPlugins('插件'),
'/zh/components/': sideBarComponents('组件')
}
}
}
}
}
function sideBarGuide (title) {
return [
{
title,
collapsable: false,
children: [
'',
'change-log'
]
}
]
}
function sideBarPlugins () {
return [
'data-export',
'data-import',
'i18n',
'mock',
'timeago'
]
}
function sideBarComponents (title) {
return [
{
title,
collapsable: false,
children: [
'charts',
'container',
'count-up',
'highlight',
'icon-select',
'icon-svg',
'icon',
'markdown'
]
}
]
}