@cainiaofe/cn-ui-layout
Version:
- 安装 cone-cli | [Cone-CLI 使用指引](https://alidocs.dingtalk.com/i/nodes/xdqZp24KneBJzvGM6XezJvyb7RA0Nr1E) - `tnpm i -g @alife/cone-cli@latest` - 安装依赖包 - `cone install` - 启动研发 - `cone start`
32 lines (31 loc) • 672 B
JavaScript
import $i18n from "../../locales/i18n";
import Icon from "./logo";
var CnLayoutCellPrototype = {
title: $i18n.get({
id: 'Container',
dm: '容器'
}),
componentName: 'CnLayoutCell',
icon: Icon,
docUrl: '',
isContainer: true,
configure: [{
name: 'isCnLayoutCell',
title: 'CnLayoutCell',
initialValue: true,
display: 'none'
}, {
name: '_context',
title: $i18n.get({
id: 'Context',
dm: '上下文'
}),
initialValue: {
type: 'JSExpression',
value: 'this'
},
display: 'none'
}]
};
// 原型配置请参考:https://lark.alipay.com/vision/docs/prototype
export { CnLayoutCellPrototype };