ask to your users their coordinates, and wrap them into a Promise
import VueGeolocation from 'vue-geolocation';
Vue.install(VueGeolocation);
Inside a Vue Component
this.$getLocation()
.then(coordinates => {
console.log(coordinates);
});
Will prompt a Geolocation Request