components tag order added

This commit is contained in:
Bahadır Sofuoğlu
2022-11-07 15:13:51 +03:00
parent 98f567478e
commit 001de2be44
41 changed files with 1677 additions and 1695 deletions

View File

@@ -1,7 +1,7 @@
export default class CountryService {
getCountries () {
getCountries() {
return fetch('/data/countries.json')
.then(res => res.json())
.then(d => d.data);
.then((res) => res.json())
.then((d) => d.data);
}
}