this repo has no description
1<script setup lang="ts">
2import { usePosts } from "@/hooks/usePosts.hook"
3
4const posts = usePosts()
5</script>
6
7<template>
8 <div class="blog-posts">
9 <h2>Last posts</h2>
10 <ul>
11 <li v-for="post in posts" :key="post.href">
12 <a :href="post.href">{{ post.title }}</a>
13 </li>
14 </ul>
15 </div>
16</template>