homehui
Version:
Vue3 二次封装基础组件文档
20 lines (19 loc) • 806 B
TypeScript
import { ColumnProps } from '../../pro-table/interface';
import { BreakPoint } from '../../grid/interface';
export interface ProTableProps {
columns?: ColumnProps[];
searchParam?: {
[key: string]: any;
};
searchCol: number | Record<BreakPoint, number>;
search: (params: any) => void;
reset: (params: any) => void;
searchOperation?: any;
}
declare const _default: import('vue').DefineComponent<ProTableProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ProTableProps> & Readonly<{}>, {
searchParam: {
[key: string]: any;
};
columns: ColumnProps<any>[];
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;