[Vuejs]-Html form returns empty objects instead of input data| vue

4👍

You’ve to bind the form input to the data property using v-model directive like:

  <input 
    type="text" name="datumStart" v-model="datumStart"
     placeholder="dd mm YYYY"  required/>

Leave a comment