Skip to content

Commit 9563666

Browse files
authored
Merge pull request #238 from little3201/develop
代码预览添加
2 parents 00cafcc + acc49e8 commit 9563666

File tree

34 files changed

+1654
-1439
lines changed

34 files changed

+1654
-1439
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,24 @@
2020
- **专业支持 -** 专家提供可靠帮助
2121
- **高度可定制 -** 可根据项目风格定制
2222

23+
### 目录结构
24+
25+
```
26+
├── src/
27+
│ ├── api/ # http request api
28+
│ ├── boot/ # Vue composables
29+
│ ├── components/ # Vue components
30+
│ ├── constants/ # Constants
31+
│ ├── i18n/ # i18n
32+
│ ├── layouts/ # Layout components
33+
│ ├── mocks/ # Mocks
34+
│ ├── pages/ # Pages
35+
│ ├── router/ # vue router
36+
│ ├── stores/ # Pinia
37+
│ ├── utils/ # Utils
38+
│ └── App.vue # Root component
39+
├── public/ # Public static assets
40+
├── index.html # Entry HTML file
41+
└── eslint.config.js # Eslint configuration
42+
└── vite.config.js # Vite configuration
43+
```

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "leafage-ms",
2+
"name": "leafage",
33
"version": "0.0.1",
44
"description": "A system based on RBAC.",
5-
"productName": "leafage-ms",
5+
"productName": "leafage",
66
"author": "wq.li <little3201@163.com>",
77
"private": true,
88
"type": "module",
@@ -14,29 +14,29 @@
1414
},
1515
"dependencies": {
1616
"@quasar/extras": "^1.17.0",
17-
"apexcharts": "^5.3.3",
18-
"axios": "^1.11.0",
17+
"apexcharts": "^5.3.5",
18+
"axios": "^1.12.2",
1919
"highlight.js": "^11.11.1",
2020
"pinia": "^3.0.3",
21-
"quasar": "^2.18.2",
22-
"vue": "^3.5.19",
23-
"vue-i18n": "^11.1.11",
21+
"quasar": "^2.18.3",
22+
"vue": "^3.5.21",
23+
"vue-i18n": "^11.1.12",
2424
"vue-router": "^4.5.1"
2525
},
2626
"devDependencies": {
27-
"@eslint/js": "^9.33.0",
27+
"@eslint/js": "^9.35.0",
2828
"@lottiefiles/dotlottie-web": "^0.47.0",
29-
"@quasar/app-vite": "^2.3.0",
30-
"@types/node": "^22.17.2",
29+
"@quasar/app-vite": "^2.4.0",
30+
"@types/node": "^22.18.5",
3131
"@vue/eslint-config-typescript": "^14.6.0",
3232
"autoprefixer": "^10.4.21",
33-
"eslint": "^9.33.0",
33+
"eslint": "^9.35.0",
3434
"eslint-plugin-vue": "^10.4.0",
35-
"globals": "^16.3.0",
36-
"msw": "^2.10.5",
35+
"globals": "^16.4.0",
36+
"msw": "^2.11.2",
3737
"typescript": "~5.8.3",
38-
"vite-plugin-checker": "^0.10.2",
39-
"vue-tsc": "^3.0.6"
38+
"vite-plugin-checker": "^0.10.3",
39+
"vue-tsc": "^3.0.7"
4040
},
4141
"msw": {
4242
"workerDirectory": [

0 commit comments

Comments
 (0)