vxe-table-select-area
Version:
一个基于 vxe-table 的可区域选中复制、粘贴的组件
30 lines (22 loc) • 551 B
TypeScript
import Vue, { VNode } from 'vue'
declare type SizeType = null | '' | 'medium' | 'small' | 'mini'
export declare class VXETableComponent extends Vue {
/**
* 尺寸
*/
size?: SizeType;
vSize?: SizeType;
static install(vue: typeof Vue): void;
}
export interface RecordInfo {
[key: string]: any;
}
/**
* 行对象
*/
export interface RowInfo {
[key: string]: any;
}
export type VNodeStyle = Record<string, string | number>
export type VNodeClassName = Record<string, boolean>
export type SlotVNodeType = VNode | string | number