Files
mes-ui-d2/docs/.vuepress/config.js
liyang bf3c3bbc2e no message
Former-commit-id: c9a35ca36f54266476b83356d2c81c04101d1db6 [formerly 522967e9c9d33b9abdb30035f5b02b9b0fdaae6d] [formerly c9a35ca36f54266476b83356d2c81c04101d1db6 [formerly 522967e9c9d33b9abdb30035f5b02b9b0fdaae6d] [formerly c9a35ca36f54266476b83356d2c81c04101d1db6 [formerly 522967e9c9d33b9abdb30035f5b02b9b0fdaae6d] [formerly 522967e9c9d33b9abdb30035f5b02b9b0fdaae6d [formerly f5304f171311caf3f42f1b980b41c4e539e6d88a [formerly 2073ad03938bf323d133db3b649529107bf0af6e]]]]]
Former-commit-id: 1647041a60bbe98ca41e89310591c1ce38427a7e
Former-commit-id: e6d9f0000658bc45da57d805eb744e0afd90a181
Former-commit-id: 39c0db39ba921457f1c613409058c97703cc84c1 [formerly 1ae8d4894b8d536d3d3b86f90fe2abc8de9caea1]
Former-commit-id: 2ec997980e56e24d36792e4b3498e0adf57e7e0f
Former-commit-id: ae780120b6e30144ae7bdc16d91203030b513f5c
Former-commit-id: 1728d9f0ab8dc11ee1515789d4f334e8a30e7c6a
Former-commit-id: 3d166d80f1c1ecd4c160be678c15b4ba7486ae65
Former-commit-id: 44b502df79334d0e54a5baaf3082e360696d2cac
2018-08-20 09:00:58 +08:00

178 lines
4.9 KiB
JavaScript

module.exports = {
locales: {
'/': {
lang: 'en-US',
title: 'D2 Admin',
description: 'Elegant management system front-end integration'
},
'/zh/': {
lang: 'zh-CN',
title: 'D2 Admin',
description: '优雅的管理系统前端集成方案'
}
},
head: [
['link', { rel: 'icon', href: `/logo@2x.png` }],
['script', {}, 'var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "https://hm.baidu.com/hm.js?be9d34853430c136b5d62c3081d556a5";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();']
],
themeConfig: {
// 项目仓库地址
repo: 'https://github.com/d2-projects/d2-admin',
// 自定义仓库链接文字
repoLabel: '查看源码',
// 文档不是放在仓库的根目录下
docsDir: 'docs',
// 默认是 false, 设置为 true 来启用
editLinks: true,
// 多国语言
locales: {
'/': {
selectText: 'Languages',
label: 'English',
editLinkText: 'Edit this page on GitHub',
lastUpdated: 'Last update',
nav: [
{ text: 'preview', link: 'https://fairyever.gitee.io/d2-admin-preview/#/index' }
]
},
'/zh/': {
selectText: '选择语言',
label: '简体中文',
editLinkText: '在 GitHub 上编辑此页',
lastUpdated: '最后更新',
nav: [
{
text: '学习',
items: [
{ text: '教程', link: '/zh/learn-guide/' },
{ text: '相关知识', link: '/zh/learn-knowledge/' }
]
},
{
text: '系统模块',
items: [
{ text: '组件', link: '/zh/sys-components/' },
{ text: '插件', link: '/zh/sys-plugins/' },
{ text: 'vuex', link: '/zh/sys-vuex/' },
{ text: '菜单', link: '/zh/sys-menu/' },
{ text: '路由', link: '/zh/sys-route/' },
{ text: '多页面', link: '/zh/sys-multi-page/' },
{ text: '主题系统', link: '/zh/sys-theme/' },
{ text: '登陆和注销', link: '/zh/sys-account/' },
{ text: '数据持久化', link: '/zh/sys-db/' },
{ text: 'CSS 实用类', link: '/zh/sys-css/' },
{ text: 'JS Util', link: '/zh/sys-util/' }
]
},
{
text: '生态',
items: [
{ text: 'D2 Admin start kit', link: '/zh/ecosystem-d2-admin-start-kit/' },
{ text: 'D2 Admin ICE', link: '/zh/ecosystem-d2-admin-ice/' },
{ text: 'D2 CRUD', link: '/zh/ecosystem-d2-crud/' },
{ text: 'D2 Ribbons', link: '/zh/ecosystem-d2-ribbons/' }
]
},
{ text: '文章', link: '/zh/article/' },
{
text: '其它',
items: [
{ text: '更新日志', link: '/zh/change-log/' },
{ text: '参与者名单', link: '/zh/collaborator/' },
{
text: '交流',
items: [
{ text: '微信公众号', link: '/zh/communication-we/' },
{ text: '交流群', link: '/zh/communication-group-chat/' }
]
},
{
text: '关注我们',
items: [
{ text: '掘金', link: '' },
{ text: 'CSDN', link: '' },
{ text: 'segmentfault', link: '' },
{ text: '知乎', link: '' }
]
}
]
},
{ text: '常见问题', link: '/zh/question/' }
],
sidebar: {
'/zh/learn-guide/': sideBarLearnGuide(),
'/zh/sys-components/': sideBarSysComponents(),
'/zh/sys-plugins/': sideBarSysPlugins(),
'/zh/article/': sideBarArticle('版本发布', 'Cookbook')
}
}
}
}
}
function sideBarLearnGuide () {
return [
{
collapsable: false,
children: [
'',
'getting-started'
]
}
]
}
function sideBarSysComponents () {
return [
{
collapsable: false,
children: [
'container',
'icon',
'icon-svg',
'icon-select',
'markdown',
'highlight',
'count-up',
'charts'
]
}
]
}
function sideBarSysPlugins () {
return [
{
collapsable: false,
children: [
'data-export',
'data-import',
'i18n',
'mock.md'
]
}
]
}
function sideBarArticle (titleUpdate, titleCookbook) {
return [
{
title: titleCookbook,
collapsable: false,
children: [
'cookbook/what-is-cookbook',
'cookbook/combinable-questionnaire'
]
},
{
title: titleUpdate,
collapsable: false,
children: [
'update/ice-1.1.2',
'update/1.1.5',
'update/1.1.4',
'update/0.0.0'
]
}
]
}