Tag Prose, CommentSide fixes and standard component initiation

This commit is contained in:
2024-09-04 14:11:32 +02:00
parent 2b293a0c1a
commit 6d3efea784
12 changed files with 72 additions and 74 deletions

View File

@@ -1,9 +1,10 @@
<script setup lang="ts">
const { data: comments } = await useFetch(`/api/project/1/comment`, {
query: {
path: unifySlug(useRoute().params.slug)
const props = defineProps({
comments: {
type: [Object],
required: true,
}
});
})
</script>
<template>