VIEW
<div v-for="(listings, index) in list4" :key="index">
<input v-model="listings.rfidState2" type="text"/>
</div>
<div v-for="(element2, index) in list4" :key="index">
<p v-if="list4[index].rfidState2 > 0">WORKING</p>
</div>
If I insert value as AC87SG67A for an input field it throws me an error at v-if="list4[index].rfidState2 > 0" but if I insert the value as 98292001 it displays WORKING. Is there a way to display WORKING for any value inserted such as integer or alphabet(a to z) inside <input v-model="listings.rfidState2" type="text"/> textfield ?
v-if="list4[index].rfidState2.length > 0?98292001that is why you can compare it against 0