Привет, я пытаюсь редактировать сообщение, но у меня есть проблема, проблема в создан ()
created(){
axios.get(`api/editPost/${this.$route.params.postid}`)
.then((response)=>{
//this.post = response.data.post;
console.log(response.data)
this.form.fill(response.data.post)
// Vue.set(this.$data, 'post', response.data.post)
})
},