Is it possible to bind the :value of a html element on v-if condition like:
<td v-if="isset == true" :value="value1" v-else :value="value2"></td>
So the v-if should only bind the :value not the whole element
I dont need this, this doesnt work for me:
<td v-if="isset == true" :value="value1"></td>
<td v-else :value="value2"></td>