docs: 跟随物料规范,追加 ComponentSort 标识

This commit is contained in:
humphry.hy 2021-12-14 15:18:35 +08:00
parent e46d371dcd
commit 1a03a8c78e

View File

@ -79,6 +79,24 @@ export interface AssetsJson {
* @deprecated
*/
bizComponentList?: ComponentCategory[];
/**
* tab category
*/
sort?: ComponentSort;
}
/**
* tab category
*/
export interface ComponentSort {
/**
* tab ["精选组件", "原子组件"]
*/
groupList?: string[];
/**
* tab category category categoryList
*/
categoryList?: string[];
}
/**