<form @submit.prevent="toSend" method="POST" action="http://www.SomeAnotherSite.com">
<input v-model="param1"/>
<button type="submit">to send</button>
</form>
toSend(){
let data = {param1: this.param1}
this.http.post('site.com', data)
.then(res => {
if (res.data.check == true){
//Как сделать так, чтобы форма продолжила выполняться на 'http://www.SomeAnotherSite.com'?
// вот есть метод form.prevent, а есть ли обратная ей?
}
else
console.log('some error');
})
}
toSend() {
let data = { param1: this.param1 };
this.http.post('site.com', data).then(res => {
if (res.data.check == true) {
this.$refs.form.submit();
} else {
console.log('some error');
}
})
}