8 lines
228 B
JavaScript
8 lines
228 B
JavaScript
|
export class CountryService {
|
||
|
getCountries() {
|
||
|
return fetch('/demo/data/countries.json', { headers: { 'Cache-Control': 'no-cache' } })
|
||
|
.then((res) => res.json())
|
||
|
.then((d) => d.data);
|
||
|
}
|
||
|
}
|