Как я могу проверить форму и затем отправить?
Кнопка
<v-btn round color="primary" :disabled="errors.any()" v-
on:click.prevent="post">Submit</v-btn>
Часть моей формы
<v-text-field v-model="signature"
data-vv-name="signature"
v-validate="'required'"
label="Signature: Enter Fullname"
single-line></v-text-field>
<span v-show="errors.has('signature')" class="text-danger">{{
errors.first('signature') }}</span>
Часть моего метода
methods: {
post: function () {
this.$http.post('/api/application/', {
LastName: this.LastName,
MiddleInitial: this.MiddleInitial