How can i toggle by btn specific div from list of items , which one i got from json and display using v-for ?
I am understand that i can`t just set v-if to div and add to vue data , but in this case it fill open and close all divs
<div class="about" v-if="list">
<div class="dat" v-for="data in item.items_situation" :key="data.a">
{{data.doc_valid_through}}
{{data.document_type}}
{{data.item_nr_full}}
{{data.item_text}}
</div>
<div class="situation-btn">
<input class="situatuin-btn" type="submit" value="Подбробнее" v-on:click="hide">
</div>
</div>
When i click the button i want to toggle one div not all