123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- module.exports = {
- base: '/',
- 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',
- '90parser-intro',
- '100vue-html-parser'
- ]
- }
- ],
- '/appendix/': [
- {
- title: '附录',
- children: [
- '',
- 'vue-prototype',
- 'vue-global-api',
- 'vue-ins',
- 'core-util',
- 'web-util',
- 'shared-util',
- 'compiler-options'
- ]
- }
- ],
- '/more/': [
- {
- title: '扩展阅读',
- children: [
- '',
- 'vue-hoc'
- ]
- }
- ]
- }
- }
- }
|