this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 325 B view raw
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>