写第一篇文章

note(根目录)
└—docs 
  └——.vuepress 
    ├———— public         
    └———— config.js      
  ├——README.md              
  └—— firstArticle   #在docs下新建文件夹(任意命名)
    └———— README.md  #创建README.md
├—node_modules
├—package.json
└—package-lock.json

在/firstArticle/README.md 写下你文章的内容


# 第一篇文章

Helloworld!

在导航栏中添加跳转按钮

module.exports = {
  themeConfig: {
    nav:[
      {
        text: '第一篇文章',
        link: '/firstArticle/'
      }
    ]
  }
}

重启项目

npm run docs:dev

访问项目localhost:8080,发现导航栏多了一个按钮,点击进去就是你的文章!

Last Updated:
Contributors: dongyz8