Skip to content

Commit 53bf9b2

Browse files
committed
Init project.
0 parents  commit 53bf9b2

File tree

20 files changed

+11427
-0
lines changed

20 files changed

+11427
-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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# vue-multi-pages
2+
3+
Scaffold for Vue Multiple Pages app.
4+
5+
## Note
6+
7+
- Each page use its own store and router.
8+
9+
## References
10+
11+
- [vue-multiple-pages](https://github.com/Plortinus/vue-multiple-pages)

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)