elk/pages/@[user]/[post].vue

22 lines
696 B
Vue
Raw Normal View History

2022-11-13 16:05:32 +00:00
<script setup lang="ts">
const props = defineProps<{
modelValue?: boolean
}>()
const params = useRoute().params
2022-11-14 14:54:30 +00:00
const id = computed(() => params.post as string)
2022-11-14 03:33:09 +00:00
const masto = await useMasto()
2022-11-14 14:54:30 +00:00
const { data: status } = await useAsyncData(`${id}-status`, () => masto.statuses.fetch(params.post as string))
const { data: context } = await useAsyncData(`${id}-context`, () => masto.statuses.fetchContext(params.post as string))
2022-11-13 16:05:32 +00:00
</script>
<template>
2022-11-14 14:54:30 +00:00
<StatusDetails :status="status" />
<template v-for="comment of context?.descendants" :key="comment.id">
<StatusCard :status="comment" border="t border" pt-4 />
</template>
<pre>{{ status }}</pre>
<pre>{{ context }}</pre>
2022-11-13 16:05:32 +00:00
</template>