Skip to content

Commit 6bc665b

Browse files
committed
first commit
0 parents  commit 6bc665b

File tree

17 files changed

+11939
-0
lines changed

17 files changed

+11939
-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: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Vue.js CRUD App with Vue Router & Axios
2+
3+
For more detail, please visit:
4+
> [Vue.js CRUD App with Vue Router & Axios](https://bezkoder.com/vue-js-crud-app/)
5+
6+
## Project setup
7+
```
8+
npm install
9+
```
10+
11+
### Compiles and hot-reloads for development
12+
```
13+
npm run serve
14+
```
15+
16+
### Compiles and minifies for production
17+
```
18+
npm run build
19+
```
20+
21+
### Run your tests
22+
```
23+
npm run test
24+
```
25+
26+
### Lints and fixes files
27+
```
28+
npm run lint
29+
```
30+
31+
### Customize configuration
32+
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)