Skip to content

Commit 859d751

Browse files
committed
init typescript template
1 parent 7a10f51 commit 859d751

File tree

136 files changed

+16068
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+16068
-0
lines changed

vue/.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*

vue/package.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"name": "iview",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build"
8+
},
9+
"dependencies": {
10+
"@aspnet/signalr": "^1.0.0-preview2-final",
11+
"abp-web-resources": "^3.5.0",
12+
"axios": "^0.18.0",
13+
"iview": "^2.13.1",
14+
"js-cookie": "^2.2.0",
15+
"register-service-worker": "^1.0.0",
16+
"vue": "^2.5.16",
17+
"vue-class-component": "^6.0.0",
18+
"vue-property-decorator": "^6.0.0",
19+
"vue-router": "^3.0.1",
20+
"vuex": "^3.0.1"
21+
},
22+
"devDependencies": {
23+
"@types/axios": "^0.14.0",
24+
"@types/js-cookie": "^2.1.0",
25+
"@vue/cli-plugin-babel": "^3.0.0-beta.9",
26+
"@vue/cli-plugin-pwa": "^3.0.0-beta.9",
27+
"@vue/cli-plugin-typescript": "^3.0.0-beta.9",
28+
"@vue/cli-service": "^3.0.0-beta.9",
29+
"less": "^2.7.3",
30+
"less-loader": "^4.0.5",
31+
"vue-template-compiler": "^2.5.13"
32+
},
33+
"babel": {
34+
"presets": [
35+
"@vue/app"
36+
]
37+
},
38+
"postcss": {
39+
"plugins": {
40+
"autoprefixer": {}
41+
}
42+
},
43+
"browserslist": [
44+
"> 1%",
45+
"last 2 versions",
46+
"not ie <= 8"
47+
]
48+
}

vue/public/favicon.ico

1.74 KB
Binary file not shown.
16.5 KB
Loading
52.8 KB
Loading
5.83 KB
Loading
6.8 KB
Loading
8.06 KB
Loading
2.59 KB
Loading
3.14 KB
Loading

0 commit comments

Comments
 (0)