Blame view

babylon-vue-4.0.0/src/service/PhotoService.js 181 Bytes
0f94839d   함상기   babylon client fo...
1
2
3
4
5
6
7
  export default class PhotoService {
      getImages() {
          return fetch('demo/data/photos.json')
              .then((res) => res.json())
              .then((d) => d.data);
      }
  }