VuePress安装使用

https://github.com/vuepress/create-vuepress-sitearrow-up-right

https://vuepress.vuejs.org/guide/getting-started.html#quick-startarrow-up-right

先安装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:8080arrow-up-right

Last updated