10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
import Axios from 'axios';
|
|
|
|
export default {
|
|
|
|
// get all settings areas
|
|
getAreas()
|
|
{
|
|
return Axios.get(zero.path + 'api/settings/getAreas').then(res => Promise.resolve(res.data));
|
|
}
|
|
}; |