primevue-mirror/service/PhotoService.js

8 lines
166 B
JavaScript
Raw Normal View History

2020-05-15 08:08:53 +00:00
export default class PhotoService {
2020-03-31 13:28:08 +00:00
getImages() {
2021-10-05 07:41:07 +00:00
return fetch('demo/data/photos.json').then(res => res.json())
.then(d => d.data);
2020-03-31 13:28:08 +00:00
}
}