[Vuejs]-How to get index of changed array under $watch in vuejs

0👍

For all those who are looking for the answer,use v-bind:change() to trigger the changes and manipulate index there.
Below is the code:

<input type=”text” list="idOfDatalist" class="form-control  border-input" placeholder="Fabric Code" v-model="x._id" v-bind:change="inpChangedForCode(x)">
                        <datalist id="idOfDatalist">
                           <option v-for="y in all_fabrics">{{y._id}}</option>
                        </datalist>

Leave a comment