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" />
Source:stackexchange.com