<div v-for="(a,i) in blog " :key="i">
<h3 @click="$router.push('/detail/{{a.number}}')">{{a.title}}</h3>
<p>{{a.content}}</p>
<p>{{a.date}}</p>
</div>
이런식으로 반복문으로 디테일페이지를 가게했는데
http://localhost:8080/detail/%7B%7Ba.number%7D%7D 주소창에 이런식으로 떠서요..
'/detail/{{i}} ', '/detail/{{key}} ' 다해봤는데 안됩니다 .어떻게 해야할까요..?