jjb-lc-designable
Version:
基于alibaba-designable源码二次封装的表单设计器。
21 lines (19 loc) • 465 B
text/typescript
import { createLocales } from 'jjb-lc-designable/core'
import { Card } from './Card'
export const ArrayCards = createLocales(Card, {
'zh-CN': {
title: '自增卡片',
addIndex: '添加索引',
addOperation: '添加操作',
},
'en-US': {
title: 'Array Cards',
addIndex: 'Add Index',
addOperation: 'Add Operations',
},
'ko-KR': {
title: '배열 카드',
addIndex: '색인 추가',
addOperation: '작업 추가',
},
})