tiddy 1.0.3 → 1.0.7
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 +29 -2
- package/dist/index.d.ts +269 -239
- package/dist/index.js +40 -21
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Tiddy
|
|
2
|
+
|
|
3
|
+
基于 Element Plus 的 Vue 3 组件库,提供增强的表单和表格实现。
|
|
4
|
+
|
|
5
|
+
## ✨ 特性
|
|
6
|
+
|
|
7
|
+
- **表单组件**:支持使用 JSON 配置表单
|
|
8
|
+
- **表格组件**:功能增强的数据表格
|
|
9
|
+
- **对话框组件**:灵活的对话框管理
|
|
10
|
+
- **TypeScript 支持**:完整的 TypeScript 类型定义
|
|
11
|
+
- **组合式 API**:基于 Vue 3 组合式 API 构建
|
|
12
|
+
|
|
13
|
+
## 🚀 安装
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# 使用 pnpm (推荐)
|
|
17
|
+
pnpm add tiddy
|
|
18
|
+
|
|
19
|
+
# 使用 npm
|
|
20
|
+
npm install tiddy
|
|
21
|
+
|
|
22
|
+
# 使用 yarn
|
|
23
|
+
yarn add tiddy
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## 🔧 使用说明
|
|
27
|
+
|
|
28
|
+
详细使用说明和示例,请访问我们的[文档网站](https://leemotive.github.io/tiddy/)。
|
|
29
|
+
|
|
2
30
|
|
|
3
|
-
A set of Form, Table, Dialog components based on element-plus
|