I create a form using GET from API. After I've created that form, I want to POST the form data back to the API, encoded as JSON. How do I do that?
I have this simple text field:
<template v-if="questions.question_type == 1">
<div class="title-1"><b>{{questions.question_title}} -</b> {{questions.question_desc}}
</div>
<v-text-field required :v-model="questions.question_tag" color="green darken-1" clearable></v-text-field>
</template>
How do I validate and POST the data?