0
0
Fork 0
salix-front-mindshore-fork2/src/composables/useUserConfig.js

14 lines
228 B
JavaScript
Raw Normal View History

2023-05-11 06:55:34 +00:00
import axios from 'axios';
export function useUserConfig() {
async function fetch() {
const { data } = await axios.get('UserConfigs/getUserConfig');
return data;
}
return {
fetch,
};
}