Skip to content

Commit 6289bbd

Browse files
authored
Merge branch 'yudaocode:master' into master
2 parents 841083b + c6898c0 commit 6289bbd

File tree

73 files changed

+923
-2068
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+923
-2068
lines changed

.image/common/ai-feature.png

7.41 KB
Loading

.image/demo/vue3-ep.png

242 KB
Loading

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
* nodejs > 16.18.0 && pnpm > 8.6.0 (强制使用pnpm)
1313
* 演示地址【Vue3 + element-plus】:<http://dashboard-vue3.yudao.iocoder.cn>
14-
* 演示地址【Vue3 + vben(ant-design-vue)】:<http://dashboard-vben.yudao.iocoder.cn>
14+
* 演示地址【Vue3 + vben5.0(ant-design-vue)】:<http://dashboard-vben.yudao.iocoder.cn>
1515
* 演示地址【Vue2 + element-ui】:<http://dashboard.yudao.iocoder.cn>
1616
* 启动文档:<https://doc.iocoder.cn/quick-start/>
1717
* 视频教程:<https://doc.iocoder.cn/video/>
@@ -24,7 +24,7 @@
2424
* 改换 saas,自动引入等功能
2525
* 使用 Element Plus 免费开源的中后台模版,具备如下特性:
2626

27-
![首页](public/home.png)
27+
![首页](.image/demo/vue3-ep.png)
2828

2929
* **最新技术栈**:使用 Vue3、Vite4 等前端前沿技术开发
3030
* **TypeScript**: 应用程序级 JavaScript 的语言
@@ -38,15 +38,15 @@
3838

3939
| 框架 | 说明 | 版本 |
4040
|----------------------------------------------------------------------|------------------|--------|
41-
| [Vue](https://staging-cn.vuejs.org/) | Vue 框架 | 3.3.8 |
41+
| [Vue](https://staging-cn.vuejs.org/) | Vue 框架 | 3.3.8 |
4242
| [Vite](https://cn.vitejs.dev//) | 开发与构建工具 | 4.5.0 |
43-
| [Element Plus](https://element-plus.org/zh-CN/) | Element Plus | 2.4.2 |
43+
| [Element Plus](https://element-plus.org/zh-CN/) | Element Plus | 2.4.2 |
4444
| [TypeScript](https://www.typescriptlang.org/docs/) | JavaScript 的超集 | 5.2.2 |
45-
| [pinia](https://pinia.vuejs.org/) | Vue 存储库 替代 vuex5 | 2.1.7 |
45+
| [pinia](https://pinia.vuejs.org/) | Vue 存储库 替代 vuex5 | 2.1.7 |
4646
| [vueuse](https://vueuse.org/) | 常用工具集 | 10.6.1 |
4747
| [vue-i18n](https://kazupon.github.io/vue-i18n/zh/introduction.html/) | 国际化 | 9.6.5 |
4848
| [vue-router](https://router.vuejs.org/) | Vue 路由 | 4.2.5 |
49-
| [unocss](https://uno.antfu.me/) | 原子 css | 0.57.4 |
49+
| [unocss](https://uno.antfu.me/) | 原子 css | 0.57.4 |
5050
| [iconify](https://icon-sets.iconify.design/) | 在线图标库 | 3.1.1 |
5151
| [wangeditor](https://www.wangeditor.com/) | 富文本编辑器 | 5.1.23 |
5252

@@ -121,9 +121,9 @@
121121

122122
基于 Flowable 构建,可支持信创(国产)数据库,满足中国特色流程操作:
123123

124-
| BPMN 设计器 | 钉钉/飞书设计器 |
125-
|------------------------------|--------------------------------|
126-
| ![](/.image/工作流设计器-bpmn.jpg) | ![](/.image/工作流设计器-simple.jpg) |
124+
| BPMN 设计器 | 钉钉/飞书设计器 |
125+
|-----------------------------|-------------------------------|
126+
| ![](.image/工作流设计器-bpmn.jpg) | ![](.image/工作流设计器-simple.jpg) |
127127

128128
> 历经头部企业生产验证,工作流引擎须标配仿钉钉/飞书 + BPMN 双设计器!!!
129129
>

build/vite/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
1313
import viteCompression from 'vite-plugin-compression'
1414
import topLevelAwait from 'vite-plugin-top-level-await'
1515
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
16-
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
16+
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons-ng'
1717
import UnoCSS from 'unocss/vite'
1818

1919
export function createVitePlugins() {
@@ -78,7 +78,6 @@ export function createVitePlugins() {
7878
createSvgIconsPlugin({
7979
iconDirs: [pathResolve('src/assets/svgs')],
8080
symbolId: 'icon-[dir]-[name]',
81-
svgoOptions: true
8281
}),
8382
viteCompression({
8483
verbose: true, // 是否在控制台输出压缩结果

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "yudao-ui-admin-vue3",
3-
"version": "2.4.1-snapshot",
3+
"version": "2.4.2-snapshot",
44
"description": "基于vue3、vite4、element-plus、typesScript",
55
"author": "xingyu",
66
"private": false,
@@ -133,7 +133,7 @@
133133
"vite-plugin-eslint": "^1.8.1",
134134
"vite-plugin-progress": "^0.0.7",
135135
"vite-plugin-purge-icons": "^0.10.0",
136-
"vite-plugin-svg-icons": "^2.0.1",
136+
"vite-plugin-svg-icons-ng": "^1.3.1",
137137
"vite-plugin-top-level-await": "^1.4.4",
138138
"vue-eslint-parser": "^9.3.2",
139139
"vue-tsc": "^1.8.27"

0 commit comments

Comments
 (0)