birdpaper-ui
Version:
一个通用的 vue3 UI组件库。A common vue3 UI component library.
27 lines (26 loc) • 723 B
TypeScript
export declare const useTable: (props: any, slots: any, emit: any) => {
initColumns: () => {
title?: string;
type: "radio" | "inner" | "checkbox";
dataIndex?: string;
width?: number;
minWidth?: number;
align: "left" | "center" | "right";
scope?: {
customRender: string;
};
}[];
bpTable: any;
table_width: import("vue").Ref<any>;
columns: import("vue").Ref<{
title?: string;
type: "radio" | "inner" | "checkbox";
dataIndex?: string;
width?: number;
minWidth?: number;
align: "left" | "center" | "right";
scope?: {
customRender: string;
};
}[]>;
};