@lxlib/seed
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
26 lines (25 loc) • 498 B
TypeScript
import { Menu } from '@lxlib/theme';
export interface Nav extends Menu {
/**
* 菜单类型,无须指定由 Service 自动识别
* 1:链接
* 2:外部链接
* 3:链接(子菜单)
*/
_type?: number;
/**
* 是否选中
*/
_selected?: boolean;
/**
* 是否隐藏菜单
*/
_hidden?: boolean;
/**
* 是否打开
*/
_open?: boolean;
_depth?: number;
_needIcon?: boolean;
[key: string]: any;
}