init:初始化项目🎉 🎉
parents
Showing
.babelrc
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.stylelintrc.js
0 → 100644
.vscode/launch.json
0 → 100644
.vscode/settings.json
0 → 100644
.vscode/vue.code-snippets
0 → 100644
LICENSE
0 → 100644
index.html
0 → 100644
jest.config.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"author": "hsianglee", | ||
"name": "element-plus-admin", | ||
"version": "0.0.0", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vuedx-typecheck . && vite build", | ||
"preview": "vite preview", | ||
"test": "jest ./test", | ||
"eslint": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix", | ||
"stylelint": "npx stylelint **/*.{css,vue} --fix" | ||
}, | ||
"dependencies": { | ||
"echarts": "^5.0.2", | ||
"element-plus": "^1.0.2-beta.35", | ||
"vue": "^3.0.7" | ||
}, | ||
"license": "MIT", | ||
"repository": "https://github.com/hsiangleev/element-plus-admin", | ||
"devDependencies": { | ||
"@babel/preset-env": "^7.12.11", | ||
"@testing-library/jest-dom": "^5.11.8", | ||
"@types/jest": "^26.0.20", | ||
"@types/mockjs": "^1.0.3", | ||
"@types/node": "^14.14.20", | ||
"@types/nprogress": "^0.2.0", | ||
"@typescript-eslint/eslint-plugin": "^4.9.1", | ||
"@typescript-eslint/parser": "^4.9.1", | ||
"@vitejs/plugin-vue": "^1.1.4", | ||
"@vue/compiler-sfc": "^3.0.5", | ||
"@vue/test-utils": "^2.0.0-beta.13", | ||
"@vuedx/typecheck": "^0.6.0", | ||
"@vuedx/typescript-plugin-vue": "^0.6.0", | ||
"autoprefixer": "^10.1.0", | ||
"axios": "^0.21.1", | ||
"babel-jest": "^26.6.3", | ||
"eslint": "^7.15.0", | ||
"eslint-plugin-vue": "^7.2.0", | ||
"jest": "^26.6.3", | ||
"mockjs": "^1.1.0", | ||
"nprogress": "^0.2.0", | ||
"postcss": "^8.2.2", | ||
"postcss-import": "^14.0.0", | ||
"postcss-nested": "^5.0.3", | ||
"postcss-simple-vars": "^6.0.2", | ||
"stylelint": "^13.8.0", | ||
"stylelint-config-standard": "^20.0.0", | ||
"tailwindcss": "^2.0.2", | ||
"ts-jest": "^26.4.4", | ||
"typescript": "^4.1.3", | ||
"vite": "^2.1.2", | ||
"vue-jest": "^5.0.0-alpha.7", | ||
"vue-router": "^4.0.0-rc.6", | ||
"vuex": "^4.0.0-rc.2" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 10" | ||
], | ||
"eslintIgnore": [ | ||
"node_modules", | ||
"dist" | ||
] | ||
} |
public/favicon.ico
0 → 100644
4.19 KB
readme.md
0 → 100644
src/App.vue
0 → 100644
src/api/components/index.ts
0 → 100644
src/api/layout/index.ts
0 → 100644
src/assets/css/index.css
0 → 100644
src/config/theme.ts
0 → 100644
src/directive/action.ts
0 → 100644
src/directive/format.ts
0 → 100644
src/directive/index.ts
0 → 100644
src/layout/blank.vue
0 → 100644
src/layout/index.vue
0 → 100644
src/layout/redirect.vue
0 → 100644
src/main.ts
0 → 100644
src/mock/data/user.ts
0 → 100644
src/mock/index.ts
0 → 100644
src/mock/response.ts
0 → 100644
src/permission.ts
0 → 100644
src/router/asyncRouter.ts
0 → 100644
src/router/index.ts
0 → 100644
src/store/index.ts
0 → 100644
src/store/module/layout.ts
0 → 100644
src/type/config/theme.ts
0 → 100644
src/type/index.d.ts
0 → 100644
src/type/shims-vue.d.ts
0 → 100644
src/type/store/layout.ts
0 → 100644
src/type/utils/tools.ts
0 → 100644
src/utils/animate.ts
0 → 100644
src/utils/changeTheme.ts
0 → 100644
src/utils/formExtend.ts
0 → 100644
src/utils/index.ts
0 → 100644
src/utils/permission.ts
0 → 100644
src/utils/request.ts
0 → 100644
src/utils/tools.ts
0 → 100644
src/views/Bud/BudApply.vue
0 → 100644
src/views/Bud/BudList.vue
0 → 100644
This diff is collapsed.
This diff is collapsed.
src/views/ErrorPage/404.vue
0 → 100644
src/views/User/Login.vue
0 → 100644
tailwind.config.js
0 → 100644
This diff is collapsed.
test/utils/format.spec.ts
0 → 100644
This diff is collapsed.
tsconfig.json
0 → 100644
This diff is collapsed.
vite.config.ts
0 → 100644
This diff is collapsed.