I have some dynamic elements <input>in my dom view from a for loop in vue. I need to add a property refto each of them, adding an Id for each ref, e.g. element1, element2, .. etc. How to do it in vue?
<div v-for="(result, index) in data" :key="index">
<input type="text" type="file" ref="element" />
</div>
How to add refif result.idexists
source
share