elk/pages/index.vue
2022-11-13 13:34:43 +08:00

13 lines
256 B
Vue

<script setup lang="ts">
const client = useClient()
const posts = await client.getPublicTimeline()
</script>
<template>
<div w-150>
<template v-for="post in posts" :key="post.id">
<PostCard :post="post" />
</template>
</div>
</template>