html
<ul v-for="(post,index) in posts" >
<li><p v-on:click="show_info($event)" >{{post.name}}</p>
<div class="none">
<p>секции: {{post.sections}}</p>
<p>адрес: {{post.adress}}</p>
</div>
</li>
</ul>
show_info:function(e){
var t = event.target.nextElementSibling;
console.log(t);
t.classList.toggle('show');
}
<style>
.none{
display:none;
}
.show{
display: block;
}
</style>
ну как вариант....ладно благодарю за помощь...не всегда vue будет продуктивнее использовать