Files
AIProd/api/config.js
2025-10-24 15:45:38 +08:00

9 lines
176 B
JavaScript

export default ($axios) => ({
getModuleConfigKey(Key) {
return $axios.get('/setting', { params: { Key }});
},
getModuleConfigs() {
return $axios.get('/settings');
}
})