fix,refac: 회의실에서 줄 바꿈이 표기 안되는 버그 수정

This commit is contained in:
2022-07-12 00:09:58 +09:00
parent 48fe26e4b1
commit 87e063e03e
3 changed files with 94 additions and 118 deletions
+6 -9
View File
@@ -15,17 +15,14 @@
</div>
</div>
</template>
<script lang="ts">
<script setup lang="ts">
import type { BoardCommentItem } from "@/PageBoard.vue";
import { defineComponent, type PropType } from "vue";
import type { PropType } from "vue";
export default defineComponent({
name: "BoardComment",
props: {
comment: {
type: Object as PropType<BoardCommentItem>,
required: true,
},
defineProps({
comment: {
type: Object as PropType<BoardCommentItem>,
required: true,
},
});
</script>