new-omis/resources/js/service/CountryService.js

8 lines
228 B
JavaScript
Raw Normal View History

2024-04-03 04:31:39 +00:00
export class CountryService {
getCountries() {
return fetch('/demo/data/countries.json', { headers: { 'Cache-Control': 'no-cache' } })
.then((res) => res.json())
.then((d) => d.data);
}
}