[Vuejs]-Why is my bound data in a Vue 3 form not being updated when printed on the console via a function?

1👍

You need to make two-way binding using v-model instead of :value :

   <input type="text" placeholder='Title' 
        class='col-span-3 mb-4 px-2 py-1 rounded' v-model="currActivity.title" name="title" />
    

Leave a comment