/** * AppIndexView 部件模型 * * @export * @class AppIndexViewModel */ export default class AppIndexViewModel { /** * 菜单项集合 * * @public * @type {any[]} * @memberof AppIndexViewModel */ public items: any[] = [ ]; /** * 应用功能集合 * * @public * @type {any[]} * @memberof AppIndexViewModel */ public funcs: any[] = [ ]; /** * 获取所有菜单项集合 * * @returns {any[]} * @memberof AppIndexViewModel */ public getAppMenuItems(): any[] { return this.items; } /** * 获取所有应用功能集合 * * @returns {any[]} * @memberof AppIndexViewModel */ public getAppFuncs(): any[] { return this.funcs; } }