sup, so I have a problem with v-if in vue.
basicly I have a v-for that loops thru array and inside that v-for I have a couple of elements with v-if
<button v-if="Collection.status" type="button">deactivate</button>
<button v-else type="button">activate</button>
but I would also like to disable "activate" buttons if a data variable (disableButton) is true. How could I do that?
Its maybe a silly question but im new to vue and i have been searching for this for to long.
Collection.statusevaluated to true?