mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-20 09:22:54 +00:00
28 lines
411 B
JavaScript
28 lines
411 B
JavaScript
/**
|
|
* 组件内置的多语言文案
|
|
*/
|
|
|
|
const bundles = {
|
|
'zh-CN': {
|
|
dataSource: [
|
|
{
|
|
label: '+86',
|
|
value: '86',
|
|
country: '中国',
|
|
rule: /(?=(\d{4})+$)/g,
|
|
},
|
|
],
|
|
},
|
|
'en-US': {
|
|
dataSource: [
|
|
{
|
|
label: '+86',
|
|
value: '86',
|
|
country: 'china',
|
|
rule: /(?=(\d{4})+$)/g,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
export default bundles;
|