mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-08 13:16:41 +08:00
13 lines
153 B
JavaScript
13 lines
153 B
JavaScript
|
|
// 语言选择数组
|
|
export const i18nList = [
|
|
{
|
|
text: '简体中文',
|
|
value: 'zh_CN',
|
|
},
|
|
{
|
|
text: 'English',
|
|
value: 'en',
|
|
},
|
|
]
|