@a2simcode/ui 0.0.42 → 0.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/dist/simcode-ui.es.js +5648 -9690
- package/dist/simcode-ui.umd.js +2 -9
- package/dist/stats.html +1 -1
- package/package.json +111 -1
package/README.md
CHANGED
|
@@ -34,6 +34,32 @@ npm install @a2simcode/ui
|
|
|
34
34
|
yarn add @a2simcode/ui
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
### 安装 Peer Dependencies
|
|
38
|
+
|
|
39
|
+
`@a2simcode/ui` 使用 peer dependencies 来避免重复打包依赖。**必须安装**以下依赖:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pnpm add vue element-plus
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
根据你使用的组件,可能还需要安装以下**可选依赖**:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
# 如果使用表格组件
|
|
49
|
+
pnpm add @visactor/vtable @visactor/vtable-editors
|
|
50
|
+
|
|
51
|
+
# 如果使用图表组件
|
|
52
|
+
pnpm add echarts
|
|
53
|
+
|
|
54
|
+
# 如果使用代码编辑器组件
|
|
55
|
+
pnpm add codemirror @codemirror/autocomplete @codemirror/commands @codemirror/lang-javascript @codemirror/lang-json @codemirror/lang-sql @codemirror/lang-python @codemirror/lang-java @codemirror/lang-css @codemirror/lang-html @codemirror/lang-xml @codemirror/lang-markdown @codemirror/language @codemirror/state @codemirror/view
|
|
56
|
+
|
|
57
|
+
# 如果使用其他功能组件
|
|
58
|
+
pnpm add @iconify/vue @vueuse/core dayjs async-validator crypto-js sortablejs sql-formatter countup.js @bwip-js/browser @wangeditor/editor diagram-js diagram-js-direct-editing min-dom inherits tiny-svg min-dash
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
> **注意**: 由于 `@a2simcode/ui` 输出的是预打包的单文件,使用方的打包器可能无法自动识别 peer dependencies。请确保在使用相关组件前,已安装对应的 peer dependencies。
|
|
62
|
+
|
|
37
63
|
## 🔨 快速开始
|
|
38
64
|
|
|
39
65
|
### 完整引入
|