mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 15:27:18 +00:00
Link: https://code.aone.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/codereview/3642343 * docs: add dataSource demo * docs: i18n demo
20 lines
378 B
JavaScript
20 lines
378 B
JavaScript
export default {
|
|
"componentName": "Page",
|
|
"fileName": "i18n",
|
|
"props": {},
|
|
"children": [{
|
|
"componentName": "Div",
|
|
"props": {},
|
|
"children": [{
|
|
"componentName": "Text",
|
|
"props": {
|
|
"text": "{{this.i18n('hello')}}"
|
|
}
|
|
}, {
|
|
"componentName": "Text",
|
|
"props": {
|
|
"text": "{{this.i18n('china')}}"
|
|
}
|
|
}]
|
|
}]
|
|
} |