Skip to content

Commit b220d5f

Browse files
committed
first commit
0 parents  commit b220d5f

25 files changed

+12623
-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?

.prettierrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
singleQuote: true
3+
};

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Vue.js JWT Authentication with Vuex and Vue Router
2+
3+
For more detail, please visit:
4+
> [Vue.js JWT Authentication with Vuex and Vue Router](https://bezkoder.com/jwt-vue-vuex-authentication/)
5+
6+
Fullstack with Spring Boot Back-end:
7+
> [Spring Boot + Vue.js: Authentication with JWT & Spring Security Example](https://bezkoder.com/spring-boot-vue-js-authentication-jwt-spring-security/)
8+
9+
## Project setup
10+
```
11+
npm install
12+
```
13+
14+
### Compiles and hot-reloads for development
15+
```
16+
npm run serve
17+
```
18+
19+
### Compiles and minifies for production
20+
```
21+
npm run build
22+
```
23+
24+
### Run your tests
25+
```
26+
npm run test
27+
```
28+
29+
### Lints and fixes files
30+
```
31+
npm run lint
32+
```
33+
34+
### Customize configuration
35+
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/app'
4+
]
5+
}

0 commit comments

Comments
 (0)