2 |
3 |
This Header is actually a Vue Template
4 |
5 |
6 |
9 |
12 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "scotch-vuepress",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1",
8 | "docs:dev": "vuepress dev docs",
9 | "docs:build": "vuepress build docs"
10 | },
11 | "keywords": [],
12 | "author": "",
13 | "license": "MIT",
14 | "devDependencies": {
15 | "vuepress": "^0.5.0"
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/docs/README.md:
--------------------------------------------------------------------------------
1 | ---
2 | home: true
3 | actionText: See Counter App
4 | actionLink: /counter/counter-app
5 | features:
6 | - title: Embedded Vue Counter
7 | details: A Vue counter developed using Vue is embedded in this doc, now thats the power of VuePress!
8 | - title: Fun Docs made with VuePress
9 | details: This entire doc was basically made with VuePress which parsed markdown files and corresponding assets using webpack.
10 | footer: Developed using VuePress by William Imoh
11 | ---
12 |