/** * 标签数据 */ export interface TabBarItem { /** 值 */ value: any; /** 名称 */ label: string; } /** * 风格类型 */ export type TabBarType = 'default' | 'plain';