axios({
url: `${ this.url }appeals`,
headers: {
"Content-Type": "application/json",
"Content-Type": "multipart/form-data"
},
method: 'post',
data: {
"documents_questions": [1]
}
}).then(result => {
const {
data: {
appeal: {
id
}
}
} = result
console.log(result)
// this.$router.replace({ path: `/file-an-appeal/confirmation/${ id }` })
})