0.0.3 • Published 4 years ago

cs99-sui v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

home: true heroImage: /hero.png heroText: Hero 标题 tagline: Hero 副标题 actionText: 快速上手 → actionLink: /zh/guide/ features:- title: 简洁至上 details: 以 Markdown 为中心的项目结构,以最少的配置帮助你专注于写作。

  • title: Vue驱动 details: 享受 Vue + webpack 的开发体验,在 Markdown 中使用 Vue 组件,同时可以使用 Vue 来开发自定义主题。
  • title: 高性能 details: VuePress 为每个页面预渲染生成静态的 HTML,同时在页面被加载的时候,将作为 SPA 运行。 footer: MIT Licensed | Copyright © 2018-present Evan You

1.局安装 vuepress

yarn global vuepress || npm i -g vuepress

2.初始化该项目

 yarn init || npm init

3.根据推荐结构完善项目结构

avatar

4.封装 vuepress 命令

vuepress 中有 dev 和 build 两个命令,利于项目的开发,我们将其封装在脚本命令中
    "scripts": {
        "docs:dev": "vuepress dev docs",
        "docs:build": "vuepress build docs"
    }
其中运行yarn docs:dev时,开启本地服务,可直接通过localhost:8080访问网站
运行yarn docs:build时,将当前网页打包成静态文件,默认放在.vuepress/dist目录中,也可以通过.vuepress/config.js中的 dest 字段来修改,生成的文件可以部署在任意静态服务器上
5. 此时可以运行 dev 命令,相对上图项目结构的默认路由如下图所示:

avatar

至此,打开http://localhost:8080/config.html即可打开.vuepress/config.md中的内容
0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago

0.0.0

4 years ago