第一次提交代码
Showing
.editorconfig
0 → 100644
.env.development
0 → 100644
.env.production
0 → 100644
.env.staging
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
README-zh.md
0 → 100644
README.md
0 → 100644
babel.config.js
0 → 100644
build/build.js
0 → 100644
build/check-versions.js
0 → 100644
build/index.js
0 → 100644
build/logo.png
0 → 100644
6.69 KB
build/utils.js
0 → 100644
build/vue-loader.conf.js
0 → 100644
build/webpack.base.conf.js
0 → 100644
build/webpack.dev.conf.js
0 → 100644
build/webpack.prod.conf.js
0 → 100644
dist.zip
0 → 100644
File added
jest.config.js
0 → 100644
jsconfig.json
0 → 100644
mock/index.js
0 → 100644
mock/mock-server.js
0 → 100644
mock/table.js
0 → 100644
mock/user.js
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "vue-admin-template", | ||
| "version": "4.2.1", | ||
| "description": "A vue admin template with Element UI & axios & iconfont & permission control & lint", | ||
| "author": "Pan <panfree23@gmail.com>", | ||
| "license": "MIT", | ||
| "scripts": { | ||
| "serve": "vue-cli-service serve", | ||
| "build:prod": "vue-cli-service build", | ||
| "build:stage": "vue-cli-service build --mode staging", | ||
| "preview": "node build/index.js --preview", | ||
| "lint": "eslint --ext .js,.vue src", | ||
| "test:unit": "jest --clearCache && vue-cli-service test:unit", | ||
| "test:ci": "npm run lint && npm run test:unit", | ||
| "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml" | ||
| }, | ||
| "dependencies": { | ||
| "ant-design-vue": "^1.6.5", | ||
| "axios": "0.18.1", | ||
| "babel-polyfill": "^6.26.0", | ||
| "codemirror": "^5.54.0", | ||
| "crypto-js": "^4.0.0", | ||
| "echarts": "^4.9.0", | ||
| "fuse.js": "^3.4.4", | ||
| "jquery": "^2.2.4", | ||
| "js-cookie": "2.2.0", | ||
| "json2yaml": "^1.1.0", | ||
| "monaco-editor": "^0.20.0", | ||
| "normalize.css": "7.0.0", | ||
| "nprogress": "0.2.0", | ||
| "ol": "^6.3.1", | ||
| "path-to-regexp": "2.4.0", | ||
| "vue-clipboard2": "^0.3.1", | ||
| "vue-count-to": "^1.0.13", | ||
| "vue-router": "3.0.6", | ||
| "vuex": "3.1.0", | ||
| "webpack-dev-server": "^2.11.5", | ||
| "yamljs": "^0.3.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "7.0.0", | ||
| "@babel/register": "7.0.0", | ||
| "@vue/cli-plugin-babel": "3.6.0", | ||
| "@vue/cli-plugin-eslint": "^3.9.1", | ||
| "@vue/cli-plugin-unit-jest": "3.6.3", | ||
| "@vue/cli-service": "3.6.0", | ||
| "@vue/test-utils": "1.0.0-beta.29", | ||
| "autoprefixer": "^9.5.1", | ||
| "babel-core": "7.0.0-bridge.0", | ||
| "babel-eslint": "10.0.1", | ||
| "babel-jest": "23.6.0", | ||
| "babel-plugin-dynamic-import-node": "^2.3.3", | ||
| "chalk": "2.4.2", | ||
| "connect": "3.6.6", | ||
| "eslint": "5.15.3", | ||
| "eslint-plugin-vue": "5.2.2", | ||
| "html-webpack-plugin": "3.2.0", | ||
| "mockjs": "1.0.1-beta3", | ||
| "monaco-editor-webpack-plugin": "^1.9.0", | ||
| "node-sass": "^4.14.1", | ||
| "runjs": "^4.3.2", | ||
| "sass-loader": "^7.1.0", | ||
| "script-ext-html-webpack-plugin": "2.1.3", | ||
| "script-loader": "0.7.2", | ||
| "serve-static": "^1.13.2", | ||
| "svg-sprite-loader": "4.1.3", | ||
| "svgo": "1.2.2", | ||
| "vue": "^2.6.10", | ||
| "vue-resource": "^1.5.1", | ||
| "vue-template-compiler": "^2.6.14" | ||
| }, | ||
| "engines": { | ||
| "node": ">=8.9", | ||
| "npm": ">= 3.0.0" | ||
| }, | ||
| "browserslist": [ | ||
| "> 1%", | ||
| "last 2 versions" | ||
| ] | ||
| } |
postcss.config.js
0 → 100644
public/index.html
0 → 100644
src/App.vue
0 → 100644
src/api/global_variable.js
0 → 100644
src/api/user.js
0 → 100644
src/assets/logo.png
0 → 100644
582 KB
src/common.js
0 → 100644
src/components/Global.vue
0 → 100644
src/css/index.css
0 → 100644
src/font/DS-DIGIT.TTF
0 → 100644
File added
src/main.js
0 → 100644
src/permission.js
0 → 100644
src/router/router.js
0 → 100644
src/settings.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/get-page-title.js
0 → 100644
src/utils/index.js
0 → 100644
src/utils/request.js
0 → 100644
src/utils/validate.js
0 → 100644
src/views/home/home.vue
0 → 100644
This diff is collapsed.
tests/unit/.eslintrc.js
0 → 100644
vue.config.js
0 → 100644