new Vue({
el: '#select',
data: {
regiones: []
},
mounted() {
axios.get("/api/regiones").then(response => this.regiones = response.data);
}
})