@yidun/antd-super-table 0.0.4 → 0.0.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
@@ -13,6 +13,10 @@ Antd Super Table 是一个基于 Ant Design Vue 的高级表格组件,提供
13
13
  - 📱 响应式设计
14
14
  - 🎨 主题定制
15
15
 
16
+ ## 示例
17
+
18
+ ![示例图片](./example.png)
19
+
16
20
  ## 安装
17
21
 
18
22
  ```bash
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import SuperTable from './SuperTable.vue';
2
2
  export default SuperTable;
3
3
  export { SuperTableColumnTypeEnum, SuperTableFormItemTypeEnum } from './config';
4
+ export * from './typings';
4
5
  declare module 'vue' {
5
6
  interface GlobalComponents {
6
7
  SuperTable: typeof SuperTable;