Files
mixtape/zero.Web/App/Resources/sections.js
T

10 lines
182 B
JavaScript

import Axios from 'axios';
export default {
// get all texts
getAll()
{
return Axios.get(zero.path + 'api/sections/getAll').then(res => Promise.resolve(res.data));
}
};