primevue-mirror/service/CountryService.js

8 lines
173 B
JavaScript
Raw Normal View History

2019-01-28 11:49:18 +00:00
export default class CountryService {
2019-10-01 13:00:26 +00:00
2019-01-28 11:49:18 +00:00
getCountries() {
2021-10-05 07:41:07 +00:00
return fetch('demo/data/countries.json').then(res => res.json())
.then(d => d.data);
2019-01-28 11:49:18 +00:00
}
2021-10-05 07:41:07 +00:00
}