kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
22 lines (17 loc) • 490 B
TypeScript
import Vue, { VueConstructor } from "vue";
/** TabPanel component props */
export interface TabPanelProps {
title?: string;
icon?: string | any[];
disabled?: boolean;
closable?: boolean;
activeKey?: string | number;
}
/** TabPanel component instance */
export interface TabPanel extends Vue {
$props: TabPanelProps;
$emit(event: string, ...args: any[]): void;
}
/** TabPanel Vue component type */
declare const TabPanel: VueConstructor<TabPanel>;
export default TabPanel;