Тема: vue.js - є питання
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.3/vue.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<div id="app">
{{message}}
</div>
new Vue({
el: "#app",
data: {
message: [1,2,3,]
},
methods: {
getList: function () {
var myGet = axios.get('/api/guests/.json')
.then(function (response) {
// ????????? message = response.data;
})
.catch(function (error) {
console.log(error);
});
}
},
created:function () {
this.getList();
}
});
https://jsfiddle.net/viach/sgsptyy6/1/
як мені переприсвоїтиприсвоїти нове значення для message?