2019-01-01 12:13:51 +08:00
|
|
|
// 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';
|
2019-01-01 12:13:51 +08:00
|
|
|
|
|
|
|
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;
|
2019-01-01 12:13:51 +08:00
|
|
|
}
|