VuePress安装使用

https://github.com/vuepress/create-vuepress-site

https://vuepress.vuejs.org/guide/getting-started.html#quick-start

先安装Node.js

创建aaa文件夹下的项目,会问几个问题随便填。

npx create-vuepress-site aaa

docs 文件夹下安装依赖并运行:

# Navigate into newly scaffolded docs directory
cd docs

# Install dependencies
npm install

# Start local dev server
npm run dev

然后可以浏览了: https://localhost:8080

Last updated

Was this helpful?