primevue-mirror/service/CountryService.js

8 lines
189 B
JavaScript
Executable File

export default class CountryService {
getCountries() {
return fetch('demo/data/countries.json')
.then((res) => res.json())
.then((d) => d.data);
}
}