pedi2/public/js/main.js

10 lines
160 B
JavaScript

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