mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
21 lines
360 B
JavaScript
21 lines
360 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')}}",
|
|
},
|
|
}],
|
|
}],
|
|
};
|