Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created June 19, 2024 11:53
Show Gist options
  • Save ABooooo/c767247a5a17a87504733e88e3acadd4 to your computer and use it in GitHub Desktop.
Save ABooooo/c767247a5a17a87504733e88e3acadd4 to your computer and use it in GitHub Desktop.
// script
const posts = ref([
{
id: 1,
title: 'post 1'
},
{
id: 2,
title: 'post 2'
}
])
// template
<ul>
<li
v-for="post in posts"
:key="post.id"
>
<RouterLink :to="`/postdetail/${ post.id }`">{{ post.title }}</RouterLink>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment