var app = new Vue({
el: '#modal-area-local',
data: {
message: 'Район',
areaStations: [],
},
computed: {
},
methods: {
},
created: function() {
axios.get('/service/areas-json?id=167532&place=1')
.then((response) => {
this.areaStations = response.data.areaStations;
})
},
})