/** * @Description: 标签页实体 * @author liuzehai * @date 2021-12-11 * @time 14:02:06 */ export class TabData { tabId: string; // 标签页编号 tabText: string; // 标签页名称 constructor( options: { tabId?: string; tabText?: string; } = {} ) { this.tabId = options.tabId || ""; this.tabText = options.tabText || ""; } }