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