in vue, there is a two-dimensional array that is looped out with v-for. How do you determine the click event of an element? Change the value in the array
<div class="gd_box">
<div class="gd_body" v-for="(item,inde) in guidaoArr" :key="inde">
<div class="gd_list" v-for="(items,index) in item" :key="index" @click="set()">
</div>
</div>
</div>