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