fes.js/docs/zh/README.md
2021-01-19 21:13:13 +08:00

1.3 KiB
Raw Blame History

home title heroImage actions features footer
true 首页 /hero.png
text link type
快速上手 /zh/guide/getting-started.html primary
text link type
项目简介 /guide/ secondary
title details
简洁至上 以 Markdown 为中心的项目结构,以最少的配置帮助你专注于写作。
title details
Vue 驱动 享受 Vue 的开发体验,可以在 Markdown 中使用 Vue 组件,又可以使用 Vue 来开发自定义主题。
title details
高性能 VuePress 会为每个页面预渲染生成静态的 HTML同时每个页面被加载的时候将作为 SPA 运行。
MIT Licensed | Copyright © 2018-present Evan You

像数 1, 2, 3 一样容易

# 在你的项目中安装
yarn add -D vuepress@next

# 新建一个 markdown 文件
echo '# Hello VuePress' > README.md

# 开始写作
yarn vuepress dev

# 构建静态文件
yarn vuepress build
# 在你的项目中安装
npm install -D vuepress@next

# 新建一个 markdown 文件
echo '# Hello VuePress' > README.md

# 开始写作
npx vuepress dev

# 构建静态文件
npx vuepress build