mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
15 lines
225 B
JavaScript
15 lines
225 B
JavaScript
|
|
export default {
|
|
getAuthUID() {
|
|
return this.$fhcApi.get(
|
|
'/api/frontend/v1/AuthInfo/getAuthUID',
|
|
{ }
|
|
);
|
|
},
|
|
getAuthInfo() {
|
|
return this.$fhcApi.get(
|
|
'/api/frontend/v1/AuthInfo/getAuthInfo',
|
|
{}
|
|
);
|
|
},
|
|
}; |