Skip to content

Commit 6cd15b6

Browse files
author
张波
committed
init repo
0 parents  commit 6cd15b6

File tree

5 files changed

+7839
-0
lines changed

5 files changed

+7839
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dist
2+
.DS_Store
3+
node_modules
4+
coverage
5+
temp
6+
explorations
7+
TODOs.md
8+
*.log

.vuepress/components/Card.vue

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<template lang="html">
2+
<div>test</div>
3+
</template>
4+
5+
<script>
6+
export default {
7+
name: 'Card',
8+
props: {
9+
10+
},
11+
computed: {
12+
13+
},
14+
methods: {
15+
16+
}
17+
}
18+
</script>
19+

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
home: true
3+
heroImage: /favicon.png
4+
actionText: Get Started →
5+
actionLink: /guide/
6+
footer: MIT Licensed | Copyright © 2018-present Evan You
7+
---
8+
9+
<div class="features">
10+
<Card />
11+
</div>
12+
13+

package.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"scripts": {
3+
"docs:dev": "vuepress dev ./",
4+
"docs:build": "vuepress build ./"
5+
},
6+
"devDependencies": {
7+
"vuepress": "^1.5.2"
8+
}
9+
}

0 commit comments

Comments
 (0)