Logo white

grp_ai / matching_ai_withui

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • matching_ai_withui
  • prestige-vue-4.0.0
  • src
  • service
  • PhotoService.js
  • 20240409
    5b5ab7e5
    함상기 authored
    2024-04-09 13:22:29 +0900  
    Browse Code »
PhotoService.js 181 Bytes
Edit Raw Blame History Permalink
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);
    }
}