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
  • babylon-vue-4.0.0
  • src
  • service
  • EventService.js
  • babylon client form 추가
    0f94839d
    함상기 authored
    2024-04-16 17:25:24 +0900  
    Browse Code »
EventService.js 181 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7
export default class EventService {
    getEvents() {
        return fetch('demo/data/events.json')
            .then((res) => res.json())
            .then((d) => d.data);
    }
}