8 lines
169 B
JavaScript
8 lines
169 B
JavaScript
|
export default class EventService {
|
||
|
|
||
|
getEvents() {
|
||
|
return fetch('demo/data/events.json').then(res => res.json())
|
||
|
.then(d => d.data);
|
||
|
}
|
||
|
}
|