mirror of
https://github.com/fugary/simple-element-plus-template.git
synced 2025-11-12 14:27:49 +00:00
20 lines
244 B
JavaScript
20 lines
244 B
JavaScript
/**
|
|
* 全局布局模式
|
|
* @readonly
|
|
* @enum {string}
|
|
*/
|
|
export const GlobalLayoutMode = {
|
|
LEFT: 'left',
|
|
TOP: 'top'
|
|
}
|
|
|
|
/**
|
|
* 全局语言
|
|
* @readonly
|
|
* @enum {string}
|
|
*/
|
|
export const GlobalLocales = {
|
|
CN: 'zh-CN',
|
|
EN: 'en-US'
|
|
}
|