1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- module.exports = {
- base: '/vue-design/',
- title: '走进Vue源码',
- description: '逐行级别的 Vue 源码分析',
- markdown: {
- toc: {
- includeLevel: [2, 3, 4, 5, 6]
- }
- },
- themeConfig: {
- sidebarDepth: 3,
- nav: [
- {
- text: '正文',
- link: '/art/',
- },
- {
- text: '附录',
- link: '/appendix/'
- },
- {
- text: '扩展阅读',
- link: '/more/'
- }
- ],
- sidebar: {
- '/art/': [
- {
- title: '正文',
- children: [
- '',
- '1start-learn',
- '2vue-constructor',
- '3vue-example',
- '4vue-normalize',
- '5vue-merge',
- '6vue-init-start',
- '7vue-reactive',
- '8vue-reactive-dep-watch',
- '80vue-compiler-start',
- '81vue-parse-ast'
- ]
- }
- ],
- '/appendix/': [
- {
- title: '附录',
- children: [
- '',
- 'vue-prototype',
- 'vue-global-api',
- 'vue-ins',
- 'core-util',
- 'web-util',
- 'shared-util',
- 'compiler-options'
- ]
- }
- ],
- '/more/': [
- {
- title: '扩展阅读',
- children: [
- '',
- 'vue-hoc'
- ]
- }
- ]
- }
- }
- }
|