new Vue({
el: '#add-person-component',
data() {
return {
FIO: String,
age: Float32Array
}
},
methods: {
createPerson: function () {
var self = this;
axios.post('/api/trail/create/',
{
'FIO': "test",
'age': 56
},
{
"headers": {
'Content-Type': 'application/json',
}
})
.then(function (response) {
self.FIO = response.data;
})
.catch(function (error) {
alert("ERROR: " + (error.message | error));
});
}
},
created: function () {
this.createPerson();
}
}); эмм помогите плиз поправить ошибки ? Я вообще правильно вроде делаю
@vuejs_ru
Обсуждают сегодня