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