[Vuejs]-Search input in dynamic table

0👍

You’re using the wrong directive name for form input binding. Change from v-mode to v-model for below line.

<input v-mode="searchQuery" type="text">

Leave a comment