docs: 文档: 📚 添加目录结构
This commit is contained in:
parent
93264d94b7
commit
88f37e6f2f
20
README.md
20
README.md
|
@ -30,6 +30,26 @@
|
|||
|
||||
## 注意事项
|
||||
|
||||
### 目录结构
|
||||
|
||||
```
|
||||
├─api
|
||||
│ ├─v1
|
||||
│ └─v2
|
||||
├─assets
|
||||
│ ├─css
|
||||
│ │ └─common
|
||||
│ └─images
|
||||
│ └─tip
|
||||
├─component
|
||||
│ └─table
|
||||
├─lib
|
||||
├─router
|
||||
├─store
|
||||
├─utils
|
||||
└─views
|
||||
```
|
||||
|
||||
### 打包成 apk
|
||||
|
||||
1. 如果需要打包成 apk,要将路由改为 hash 路由。
|
||||
|
|
File diff suppressed because it is too large
Load Diff
60
package.json
60
package.json
|
@ -16,8 +16,8 @@
|
|||
"commit": "git status && git add -A && git-cz"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^1.6.2",
|
||||
"core-js": "^3.8.3",
|
||||
"axios": "^1.6.7",
|
||||
"core-js": "^3.36.0",
|
||||
"dayjs": "^1.11.10",
|
||||
"echarts": "^5.5.0",
|
||||
"loadsh": "^0.0.4",
|
||||
|
@ -28,42 +28,42 @@
|
|||
"stylelint-config-standard-scss": "^13.0.0",
|
||||
"uuid": "^9.0.1",
|
||||
"v-scale-screen": "^2.2.0",
|
||||
"vue": "^3.2.13",
|
||||
"vue": "^3.4.21",
|
||||
"vue-cookies": "^1.8.3",
|
||||
"vue-echarts": "^6.6.9",
|
||||
"vue-lazyload": "^3.0.0",
|
||||
"vue-router": "^4.0.3",
|
||||
"webpackbar": "^6.0.0"
|
||||
"vue-router": "^4.3.0",
|
||||
"webpackbar": "^6.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^18.4.3",
|
||||
"@commitlint/config-conventional": "^18.4.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
||||
"@typescript-eslint/parser": "^5.4.0",
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-eslint": "~5.0.0",
|
||||
"@vue/cli-plugin-router": "~5.0.0",
|
||||
"@vue/cli-plugin-typescript": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"@vue/eslint-config-typescript": "^9.1.0",
|
||||
"@commitlint/cli": "^17.6.7",
|
||||
"@commitlint/config-conventional": "^17.6.7",
|
||||
"cz-git": "^1.7.0",
|
||||
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
||||
"@typescript-eslint/parser": "^7.1.0",
|
||||
"@vue/cli-plugin-babel": "~5.0.8",
|
||||
"@vue/cli-plugin-eslint": "~5.0.8",
|
||||
"@vue/cli-plugin-router": "~5.0.8",
|
||||
"@vue/cli-plugin-typescript": "~5.0.8",
|
||||
"@vue/cli-service": "~5.0.8",
|
||||
"@vue/eslint-config-typescript": "^12.0.0",
|
||||
"commitizen": "^4.3.0",
|
||||
"compression-webpack-plugin": "^11.0.0",
|
||||
"cz-git": "^1.8.0",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"eslint-plugin-vue": "^8.0.3",
|
||||
"husky": "^8.0.3",
|
||||
"lint-staged": "^11.2.6",
|
||||
"postcss": "^8.4.32",
|
||||
"postcss-html": "^1.5.0",
|
||||
"prettier": "^2.4.1",
|
||||
"sass": "^1.71.0",
|
||||
"sass-loader": "^12.0.0",
|
||||
"stylelint": "^14.16.1",
|
||||
"compression-webpack-plugin": "^11.1.0",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"eslint-plugin-vue": "^9.22.0",
|
||||
"husky": "^9.0.11",
|
||||
"lint-staged": "^15.2.2",
|
||||
"postcss": "^8.4.35",
|
||||
"postcss-html": "^1.6.0",
|
||||
"prettier": "^3.2.5",
|
||||
"sass": "^1.71.1",
|
||||
"sass-loader": "^14.1.1",
|
||||
"stylelint": "^16.2.1",
|
||||
"stylelint-config-html": "^1.1.0",
|
||||
"stylelint-config-prettier": "^9.0.5",
|
||||
"typescript": "~4.5.5"
|
||||
"typescript": "~5.3.3"
|
||||
},
|
||||
"gitHooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
|
|
Loading…
Reference in New Issue