🎨 updated comment code framework / add comment verification

This commit is contained in:
landaiqing
2024-09-26 01:15:29 +08:00
parent e4b9214840
commit 96ae754efd
22 changed files with 1997 additions and 1258 deletions

View File

@@ -0,0 +1,22 @@
<template>
<div class="comment-main">
<AFlex :vertical="false" justify="flex-start" class="comment-header">
<span class="comment-header-title">{{ t('comment.comment') }}</span>
</AFlex>
<!-- 评论输入框 -->
<CommentInput/>
<ADivider/>
<!-- 回复列表 -->
<CommentList/>
</div>
</template>
<script setup lang="ts">
import CommentInput from "@/components/CommentReply/Components/CommentInput/CommentInput.vue";
import {useI18n} from "vue-i18n";
import CommentList from "@/components/CommentReply/Components/CommentList/CommentList.vue";
const {t} = useI18n();
</script>
<style src="./index.scss" lang="scss" scoped>
</style>