mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2025-05-19 01:50:15 +09:00
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
import HttpHandler from '@/common/http/request.js'
|
|
|
|
export default {
|
|
/**
|
|
* 获取应用基本配置
|
|
*/
|
|
getAppConfigs: () => {
|
|
return HttpHandler.Get(`/apis/api.uni.uhalo.pro/v1alpha1/plugins/plugin-uni-halo/getConfigs`, {})
|
|
},
|
|
}
|