npm install --global yarn
yarn install
yarn run dev
yarn run build
bash ./build
-
如何新建一个专题?
直接在
src\.vuepress
目录下新建一个目录即可 -
如何新建一个文章?
首先在专题下面新建markdown文本,然后在
config.js
里面配好路径:'/quickstart/': [ { title: "快速开始", collapsable: false, children: [ '/quickstart/cli.html', ] }, ],
-
如何设置标题?
在markdown文档加上特殊标识
title
即可--- title: 物联网平台 ---