init
parents
Showing
.browserslistrc
0 → 100644
.env.develop
0 → 100644
.env.production
0 → 100644
.env.test
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
babel.config.js
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
{ | |||
"name": "vue-project-template", | |||
"version": "0.1.0", | |||
"private": true, | |||
"scripts": { | |||
"serve": "vue-cli-service serve --mode develop", | |||
"dev": "npm run serve", | |||
"start": "npm run serve", | |||
"build": "vue-cli-service build --mode production", | |||
"build:test": "vue-cli-service build --mode test", | |||
"lint": "vue-cli-service lint", | |||
"test:unit": "vue-cli-service test:unit" | |||
}, | |||
"dependencies": { | |||
"axios": "^0.19.0", | |||
"babel-polyfill": "^6.26.0", | |||
"core-js": "^2.6.5", | |||
"cross-env": "^5.2.0", | |||
"register-service-worker": "^1.6.2", | |||
"uglifyjs-webpack-plugin": "^2.1.3", | |||
"vue": "^2.6.10", | |||
"vue-router": "^3.0.3", | |||
"vuex": "^3.0.1" | |||
}, | |||
"devDependencies": { | |||
"@vue/cli-plugin-babel": "^3.8.0", | |||
"@vue/cli-plugin-eslint": "^3.8.0", | |||
"@vue/cli-plugin-pwa": "^3.8.0", | |||
"@vue/cli-plugin-unit-mocha": "^3.8.0", | |||
"@vue/cli-service": "^3.8.0", | |||
"@vue/test-utils": "1.0.0-beta.29", | |||
"babel-eslint": "^10.0.1", | |||
"chai": "^4.1.2", | |||
"eslint": "^5.16.0", | |||
"eslint-plugin-vue": "^5.0.0", | |||
"lint-staged": "^8.1.5", | |||
"node-sass": "^4.9.0", | |||
"sass-loader": "^7.1.0", | |||
"vue-template-compiler": "^2.6.10" | |||
}, | |||
"gitHooks": { | |||
"pre-commit": "lint-staged" | |||
}, | |||
"lint-staged": { | |||
"*.{js,vue}": [ | |||
"vue-cli-service lint --fix --no-verify", | |||
"git add" | |||
] | |||
} | |||
} |
postcss.config.js
0 → 100644
public/favicon.ico
0 → 100644
File added
public/img/icons/android-chrome-192x192.png
0 → 100644
9.2 KB
public/img/icons/android-chrome-512x512.png
0 → 100644
29.1 KB
3.29 KB
3.95 KB
4.57 KB
public/img/icons/apple-touch-icon-60x60.png
0 → 100644
1.46 KB
public/img/icons/apple-touch-icon-76x76.png
0 → 100644
1.78 KB
public/img/icons/apple-touch-icon.png
0 → 100644
4.57 KB
public/img/icons/favicon-16x16.png
0 → 100644
799 Bytes
public/img/icons/favicon-32x32.png
0 → 100644
1.24 KB
1.14 KB
public/img/icons/mstile-150x150.png
0 → 100644
4.18 KB
public/img/icons/safari-pinned-tab.svg
0 → 100644
This diff is collapsed.
Click to expand it.
public/index.html
0 → 100644
public/manifest.json
0 → 100644
public/robots.txt
0 → 100644
src/App.vue
0 → 100644
src/api/index.js
0 → 100644
src/api/login.js
0 → 100644
src/assets/logo.png
0 → 100644
6.69 KB
src/components/HelloWorld.vue
0 → 100644
src/main.js
0 → 100644
src/registerServiceWorker.js
0 → 100644
src/router/index.js
0 → 100644
src/store/getters.js
0 → 100644
src/store/index.js
0 → 100644
src/store/modules/app.js
0 → 100644
src/store/modules/user.js
0 → 100644
src/utils/auth.js
0 → 100644
src/utils/common.js
0 → 100644
src/utils/flexible.js
0 → 100644
src/utils/index.js
0 → 100644
src/utils/request.js
0 → 100644
src/utils/validate.js
0 → 100644
src/views/About.vue
0 → 100644
src/views/Home.vue
0 → 100644
tests/unit/.eslintrc.js
0 → 100644
tests/unit/example.spec.js
0 → 100644
vue.config.js
0 → 100644
Please
register
or
sign in
to comment