new-omis/resources/js/service/PhotoService.js

8 lines
220 B
JavaScript
Raw Permalink Normal View History

2024-04-03 04:31:39 +00:00
export class PhotoService {
getImages() {
return fetch('/demo/data/photos.json', { headers: { 'Cache-Control': 'no-cache' } })
.then((res) => res.json())
.then((d) => d.data);
}
}