interface IWorkspaceInitConfig {
    defaultActiveRoute?: string;
    entry?: string;
    files?: IFileConfig[];
    onFilesChange?: ((filenams: string[]) => void);
    prototypes?: Record<string, IComponentPrototype>;
}

Properties

defaultActiveRoute?: string

默认的激活的路由

entry?: string

入口文件

files?: IFileConfig[]

初始化文件列表

onFilesChange?: ((filenams: string[]) => void)

工作区文件变更事件

prototypes?: Record<string, IComponentPrototype>

组件描述列表