2020-09-03 10:20:35 +08:00

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