naive-ui-table
Version:
基于naive-ui封装的表格组件
21 lines (20 loc) • 753 B
TypeScript
import type { PropType } from 'vue';
import type { Recordable } from './types';
declare const _default: import("vue").DefineComponent<{
columns: {
type: PropType<Recordable>;
default: () => never[];
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:columns": (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
columns: {
type: PropType<Recordable>;
default: () => never[];
};
}>> & {
"onUpdate:columns"?: ((...args: any[]) => any) | undefined;
}, {
columns: Recordable;
}, {}>;
export default _default;