Skip to main content
Version: 3.1

FrontendLibrary 前端库

前端依赖库

结构声明

interface FrontendLibrary {
"concept": "FrontendLibrary", // 产品概念
"name": "pc" | "h5", // 名称与type保持一致
"type": "pc" | "h5", // PC/H5 端
"logics": Array<Logic>, // 逻辑列表
"viewComponents": Array<ViewComponent>, // 页面组件列表
}

示例

简单示例

{
"concept": "FrontendLibrary",
"name": "h5",
"type": "h5",
"logics": [],
"viewComponents": []
}