29 lines
661 B
Vue
29 lines
661 B
Vue
<template>
|
|
<div class="row gx-0 comment s-border-b">
|
|
<div class="authorName center d-grid">
|
|
<div class="align-self-center">
|
|
{{ comment.author }}
|
|
</div>
|
|
</div>
|
|
<div class="col text">
|
|
{{ comment.text }}
|
|
</div>
|
|
<div class="col-2 col-md-1 date center d-grid">
|
|
<div class="align-self-center">
|
|
{{ comment.date.slice(5, 16) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import type { BoardCommentItem } from "@/PageBoard.vue";
|
|
import type { PropType } from "vue";
|
|
|
|
defineProps({
|
|
comment: {
|
|
type: Object as PropType<BoardCommentItem>,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|