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