primevue-mirror/service/EventService.js

8 lines
169 B
JavaScript
Raw Normal View History

2018-12-31 15:41:35 +00:00
export default class EventService {
2019-10-01 13:00:26 +00:00
2018-12-31 15:41:35 +00:00
getEvents() {
2021-10-05 07:41:07 +00:00
return fetch('demo/data/events.json').then(res => res.json())
.then(d => d.data);
2018-12-31 15:41:35 +00:00
}
2021-10-05 07:41:07 +00:00
}