mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
21 lines
489 B
TypeScript
21 lines
489 B
TypeScript
// 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
|
|
|
|
import { AntdComponent } from '../component';
|
|
import { MenuItem } from './menu-item';
|
|
|
|
export declare class MenuItemGroup extends AntdComponent {
|
|
/**
|
|
* sub menu items
|
|
* @type MenuItem[]
|
|
*/
|
|
children: MenuItem[];
|
|
|
|
/**
|
|
* title of the group
|
|
* @type string | slot
|
|
*/
|
|
title: any;
|
|
}
|