UNPKG

@layui/layui-vue

Version:

a component library for Vue 3 base on layui-vue

13 lines (12 loc) 368 B
import type { Recordable } from "../../../types"; /** * 列自动设置宽度 * * ( 宽度 < minWidth ) ==> minWidth * ( minWidth < 宽度 < 300px ) ==> 宽度 * ( 宽度 > 300px ) ==> 300px * * @param columns 表格列 * @param dataSource 表格数据 */ export declare function useAutoColsWidth(columns: Recordable[], dataSource: any[]): void;