Skip to content

Commit 2fc47be

Browse files
committed
Initial commit
0 parents  commit 2fc47be

File tree

11 files changed

+11845
-0
lines changed

11 files changed

+11845
-0
lines changed

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw?

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Vue Basic
2+
3+
## Project setup
4+
5+
```bash
6+
npm install
7+
```
8+
9+
### Compiles and hot-reloads for development
10+
11+
```bash
12+
npm run serve
13+
```
14+
15+
### Compiles and minifies for production
16+
17+
```bash
18+
npm run build
19+
```
20+
21+
### Lints and fixes files
22+
23+
```bash
24+
npm run lint
25+
```
26+
27+
### Customize configuration
28+
29+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

0 commit comments

Comments
 (0)