Skip to content

Commit 4af577e

Browse files
committed
First commit
1 parent 26a312d commit 4af577e

18 files changed

+14986
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea/
2+
node_modules/
3+
.*
4+
!.gitignore
5+
!.gitkeep

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
11
# Vue-spectre
22
A Vue.js 2.0 UI Toolkit for spectre.css - https://picturepan2.github.io/spectre/
3+
4+
## Project setup
5+
```
6+
npm install
7+
```
8+
9+
### Compiles and hot-reloads for development
10+
```
11+
npm run serve
12+
```
13+
14+
### Compiles and minifies for production
15+
```
16+
npm run build
17+
```
18+
19+
### Run your tests
20+
```
21+
npm run test
22+
```
23+
24+
### Lints and fixes files
25+
```
26+
npm run lint
27+
```
28+
29+
### Run your unit tests
30+
```
31+
npm run test:unit
32+
```
33+
34+
### Customize configuration
35+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/app'
4+
]
5+
}

0 commit comments

Comments
 (0)