mirror of
https://github.com/veops/cmdb.git
synced 2025-08-25 17:46:52 +08:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
import { axios } from '@/utils/request'
|
|
|
|
export function getSystemLanguage() {
|
|
return axios({
|
|
url: '/common-setting/v1/system/language',
|
|
method: 'get',
|
|
})
|
|
}
|