<template>
<div v-for="(item ,index) in items" v-if="showing">
<span @click="showing=false">{{item.name}}</span>
</div>
</template>
<script>
export default{
showing:true,
items: [
{'name':'a'},
{'name':'b'},
{'name':'c'},
],
}
</script>
How can I hide a specific div when clicking on it? **Whenever I try this method, all of them are hidden at once.**