@zhangqingcq/vgce 0.1.10 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +4 -4
- package/dist/style.css +1 -1
- package/dist/vgce.js +20101 -20148
- package/dist/vgce.umd.cjs +38 -35
- package/package.json +4 -4
- package/src/components/svg-editor/top-panel.vue +1 -16
package/README.md
CHANGED
@@ -7,13 +7,13 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
7
7
|
### 1. install 安装依赖
|
8
8
|
|
9
9
|
```
|
10
|
-
npm i @zhangqingcq/vgce element-plus
|
10
|
+
npm i @zhangqingcq/vgce element-plus@2.8.0 ace-builds@1.14.0 lodash-es@^4.17.21 vue-echarts@6.5.1 animate.css@4.1.1
|
11
11
|
```
|
12
12
|
|
13
13
|
or
|
14
14
|
|
15
15
|
```
|
16
|
-
pnpm add @zhangqingcq/vgce element-plus
|
16
|
+
pnpm add @zhangqingcq/vgce element-plus@2.8.0 ace-builds@1.14.0 lodash-es@^4.17.21 vue-echarts@6.5.1 animate.css@4.1.1
|
17
17
|
```
|
18
18
|
|
19
19
|
### 2. change main.ts or main.js 修改项目主文件
|
@@ -173,6 +173,6 @@ or
|
|
173
173
|
|
174
174
|
### 注意:
|
175
175
|
|
176
|
-
- 本库ui框架使用的是`element-plus`,所以你需要在你的项目安装 element-plus
|
177
|
-
- 在你没有其他地方使用element-plus组件的情况下,可以不用完整安装element-plus
|
176
|
+
- 本库ui框架使用的是`element-plus`,所以你需要在你的项目安装 element-plus 依赖,依赖版本按上面给出的版本
|
177
|
+
- 在你没有其他地方使用element-plus组件的情况下,可以不用完整安装element-plus
|
178
178
|
- 如果有少量使用其组件,也可以使用按需引入或手动引入,如果项目使用了其他UI框架,在不完整安装element-plus的情况下,是不会有冲突的
|