🐛(component): table

修复table 布局问题
column 新增minWidth和ellipsisTooltip属性

ISSUES CLOSED: https://gitee.com/layui/layui-vue/issues/I58DWF
This commit is contained in:
dingyongya
2022-05-21 17:11:28 +08:00
parent 0d3a7e4f89
commit 5b64cad09c
158 changed files with 42149 additions and 12 deletions

5
types/tools/domUtil.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export function getTop(elem: any): any;
export function getLeft(elem: any): any;
export function on(elem: any, events: any, handler: any): void;
export function once(elem: any, events: any, handler: any): void;
export function off(elem: any, events: any, handler: any): void;

2
types/tools/guidUtil.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare function S4(): string;
export declare function guid(): string;