primevue-mirror/service/CountryService.js

10 lines
281 B
JavaScript
Raw Normal View History

2022-12-09 13:41:56 +00:00
const baseUrl = process.env.NODE_ENV === 'production' ? '/primevue-nuxt/' : '/';
2019-01-28 11:49:18 +00:00
export default class CountryService {
getCountries() {
2022-12-09 13:41:56 +00:00
return fetch(baseUrl + 'demo/data/countries.json')
2022-09-14 14:26:41 +00:00
.then((res) => res.json())
.then((d) => d.data);
2019-01-28 11:49:18 +00:00
}
2021-10-05 07:41:07 +00:00
}