8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
|
export default class PhotoService {
|
||
|
|
||
|
getImages() {
|
||
|
return fetch('demo/data/photos.json').then(res => res.json())
|
||
|
.then(d => d.data);
|
||
|
}
|
||
|
}
|