[Vuejs]-The Value of Variables does not update inside components

3👍

You are not listening for the update:searchField event in the Parent.

<input-form :searchField="searchField" @update:searchField="searchField = $event" />

or

<input-form v-model:searchField="searchField" />

Leave a comment