🐛(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

2
types/module/popper/calcPosition.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
declare const postionFns: any;
export default postionFns;

7
types/module/popper/usePopper.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
declare const usePopper: {
createPopper(el: HTMLElement, props: any, trigger: string): void;
renderPopper(props: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>;
};
export default usePopper;