elk/pages/index.vue

13 lines
256 B
Vue
Raw Normal View History

2022-11-13 05:34:43 +00:00
<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>