Files
mixtape/zero.Web.UI/App/resources/sections.js
T

10 lines
169 B
JavaScript
Raw Normal View History

import Axios from 'axios';
export default {
2020-04-06 00:26:31 +02:00
// get all sections
getAll()
{
2020-04-09 10:38:27 +02:00
return Axios.get('sections/getAll').then(res => Promise.resolve(res.data));
}
};