/*** * @file: theme的interface * @author: linkun.he * @Date: 2019-06-03 10:11:13 */ /** 打开的页面数据 */ export interface Pages { /** 路由数组 */ data?: PageData[]; /** 选中的数组索引 */ index?: number; } /** 单个打开的页面数据 */ export interface PageData { /** 标题 */ title?: string; /** 路由地址 */ url?: string; pureRouter: string; }