2022-02-16 11:20:17 +08:00

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')}}",
},
}],
}],
};