8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
|
import axios from '~/lib/utils/axios_utils';
|
||
|
|
||
|
export default {
|
||
|
getErrorList({ endpoint }) {
|
||
|
return axios.get(endpoint);
|
||
|
},
|
||
|
};
|