@zhaoyifannan/tvue 3.7.3 → 3.7.6

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 CHANGED
@@ -1 +1,45 @@
1
- npm publish --tag latest-v3
1
+ ## 特性
2
+
3
+ - 🚀 **高效开发**:基于数据驱动视图的理念,大大减少了代码量
4
+ - 📦 **开箱即用**:丰富的表格、表单配置及多种常用组件
5
+ - 🛠️ **强大定制**:高度灵活的配置项,满足各种复杂场景需求
6
+ - 🔌 **扩展性强**:支持自定义组件和多种交互方式
7
+ - 📚 **详尽文档**:完善的文档和示例,快速上手无烦恼
8
+
9
+ ## 🔧 安装
10
+
11
+ ```bash
12
+ # 使用 pnpm 安装(推荐)
13
+ pnpm add @zhaoyifannan/tvue
14
+
15
+ # 或使用 npm 安装
16
+ npm install @zhaoyifannan/tvue
17
+
18
+ # 或使用 yarn 安装
19
+ yarn add @zhaoyifannan/tvue
20
+ ```
21
+
22
+ ## 📦 使用
23
+
24
+ ```js
25
+ // 完整引入
26
+ import { createApp } from 'vue'
27
+ import Tvue from '@zhaoyifannan/tvue'
28
+ import '@zhaoyifannan/tvue/dist/tvue.css'
29
+ import App from './App.vue'
30
+
31
+ const app = createApp(App)
32
+ app.use(Tvue)
33
+ app.mount('#app')
34
+ ```
35
+
36
+ ## 📄 文件说明
37
+
38
+ | 文件名 | 用途 | 说明 |
39
+ | ----------- | -------- | ---- |
40
+ | tvue.min.js | 生产环境 | 压缩优化版本,体积更小 |
41
+ | tvue.js | 开发环境 | 包含完整的调试信息 |
42
+
43
+ ## 📚 文档与示例
44
+
45
+ 要查看详细文档和在线示例,请访问:[官方文档](https://zhaoyifan-admin.github.io/vuepress-3.0/)