ant-design-vue/types/menu/menu-item.d.ts

27 lines
572 B
TypeScript
Raw Normal View History

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
2019-01-12 11:33:27 +08:00
import { AntdComponent } from '../component';
export declare class MenuItem extends AntdComponent {
/**
* unique id of the menu item
* @type string
*/
key: string;
/**
* whether menu item is disabled or not
* @default false
* @type boolean
*/
disabled: boolean;
2019-01-05 11:24:56 +08:00
/**
* set display title for collapsed item
* @type string
*/
title: string;
}