countries-explorer/
├── public/
│ ├── index.html
│ └── favicon.ico
├── src/
│ ├── components/
│ │ ├── CityCard.vue
│ │ ├── CityGrid.vue
│ │ ├── NearbyModal.vue
│ │ └── PaginationComponent.vue
│ ├── services/
│ │ └── api.service.js
│ ├── store/
│ │ ├── index.js
│ │ └── modules/
│ │ └── cities.module.js
│ ├── views/
│ │ └── HomeView.vue
│ ├── App.vue
│ └── main.js
├── .gitignore
├── babel.config.js
├── package.json
└── vue.config.js
npm install
npm run serve
npm run build
npm run lint