Blame view

prestige-vue-4.0.0/src/service/CountryService.js 189 Bytes
5b5ab7e5   함상기   20240409
1
2
3
4
5
6
7
  export default class CountryService {
      getCountries() {
          return fetch('demo/data/countries.json')
              .then((res) => res.json())
              .then((d) => d.data);
      }
  }