@visactor/vue-vtable
Version:
The vue version of VTable
17 lines (16 loc) • 355 B
TypeScript
import type { VNode } from 'vue';
export interface TagProps {
attribute?: any;
children?: string;
textStyle?: any;
panelStyle?: any;
padding?: any;
minWidth?: number;
maxWidth?: number;
visible?: boolean;
}
declare function Tag(props: TagProps): VNode;
declare namespace Tag {
var symbol: string;
}
export default Tag;