2020-05-15 08:08:53 +00:00
|
|
|
export default class PhotoService {
|
2022-09-14 14:26:41 +00:00
|
|
|
getImages() {
|
2022-12-27 20:54:26 +00:00
|
|
|
const runtimeConfig = useRuntimeConfig();
|
|
|
|
|
|
|
|
return fetch(runtimeConfig.public.contextPath + 'demo/data/photos.json')
|
2022-09-14 14:26:41 +00:00
|
|
|
.then((res) => res.json())
|
|
|
|
.then((d) => d.data);
|
2020-03-31 13:28:08 +00:00
|
|
|
}
|
|
|
|
}
|