🚧 optimization & adjustments

This commit is contained in:
2025-03-03 01:00:18 +08:00
parent 1c3ee31c0b
commit 3f4bf14533
51 changed files with 1645 additions and 3441 deletions

View File

@@ -0,0 +1,35 @@
<template>
<ADrawer v-model:open="shareStore.openCommentDrawer" placement="right" title="评论" width="750px"
:bodyStyle="drawerCSS"
@close="shareStore.setOpenCommentDrawer(false)">
<CommentReply :topic-id="topicId"/>
</ADrawer>
</template>
<script setup lang="ts">
import useStore from "@/store";
import CommentReply from "@/components/CommentReply/index.vue";
const shareStore = useStore().share;
defineProps({
topicId: {
type: String,
required: true,
},
});
const drawerCSS = computed(() => {
return {
'display': 'flex',
'flex-direction': 'column',
'align-items': 'center',
'justify-content': 'flex-start',
};
});
</script>
<style scoped lang="scss">
</style>