no message

Former-commit-id: d5c2b85bf62d6c02743adad20c6de71ae556a82d [formerly d5c2b85bf62d6c02743adad20c6de71ae556a82d [formerly d5c2b85bf62d6c02743adad20c6de71ae556a82d [formerly d5c2b85bf62d6c02743adad20c6de71ae556a82d [formerly 074099c4c153f024958d3fda5cf710028e03d10a [formerly e73af225c96eb997a86122fc729dfadcdf846a4e]]]]]
Former-commit-id: d84a01a4aca85cd9e3891825ac7a152e12280d4e
Former-commit-id: 0412c82e909316b780fdd364ecabc78166c7cc0a
Former-commit-id: 9e648fdbc93f347265fed8bb56948adda020e1c9 [formerly 8b530e6e6979a9c25832339725619d9d0c8ce76f]
Former-commit-id: c12a2ae03243dd387e8c1d6496d6b3bb4148e149
Former-commit-id: 704f81678c7570f204cbe089e7497055c27e1328
Former-commit-id: 3879c040dcf291ef0f44745a5e791b360cde0f40
Former-commit-id: 0871c460804ea97eadf60bf3f0eaa8e147f3fb66
Former-commit-id: 188dd73a6cf49ecbf4cdedce1933f5a856c72b6f
This commit is contained in:
liyang
2018-08-19 11:24:03 +08:00
parent fbc38520d4
commit eae8b9291e
31 changed files with 993 additions and 88 deletions

View File

@@ -49,26 +49,27 @@ module.exports = {
]
},
{
text: '系统',
text: '系统模块',
items: [
{ text: '内置组件', link: '' },
{ text: '插件', link: '' },
{ text: 'vuex', link: '' },
{ text: '菜单', link: '' },
{ text: '路由', link: '' },
{ text: '主题系统', link: '' },
{ text: '数据持久化', link: '' },
{ text: 'CSS 实用类', link: '' },
{ text: 'JS Util', link: '' }
{ 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-db/' },
{ text: 'CSS 实用类', link: '/zh/sys-css/' },
{ text: 'JS Util', link: '/zh/sys-util/' }
]
},
{
text: '生态',
items: [
{ text: 'D2 Admin start kit', link: '' },
{ text: 'D2 Admin ICE', link: '' },
{ text: 'D2 CRUD', link: '' },
{ text: 'D2 Ribbons', link: '' }
{ 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/' }
]
},
{
@@ -84,15 +85,18 @@ module.exports = {
{ text: 'CSDN', link: '' },
{ text: 'segmentfault', link: '' },
{ text: '知乎', link: '' },
{ text: '微信公众号', link: '' }
{ text: '微信公众号', link: '' },
{ text: '交流群', link: '' }
]
}
]
},
{ text: '常见问题', link: '' }
{ text: '常见问题', link: '/zh/question/' }
],
sidebar: {
'/zh/learn-guide/': sideBarLearnGuide()
'/zh/learn-guide/': sideBarLearnGuide(),
'/zh/sys-components/': sideBarSysComponents(),
'/zh/sys-plugins/': sideBarSysPlugins()
}
}
}
@@ -109,4 +113,36 @@ function sideBarLearnGuide () {
]
}
]
}
function sideBarSysComponents () {
return [
{
collapsable: false,
children: [
'container',
'icon',
'icon-svg',
'icon-select',
'charts-new',
'markdown',
'highlight',
'count-up'
]
}
]
}
function sideBarSysPlugins () {
return [
{
collapsable: false,
children: [
'data-export',
'data-import',
'i18n',
'mock.md'
]
}
]
}