From 10d1aa4d8c2fe6548ce80f0bff29c4e3c61b3703 Mon Sep 17 00:00:00 2001 From: Dang Date: Tue, 18 Feb 2025 10:33:12 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9A=A9=EC=96=B4=EC=A7=91=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/wordDict/DictCard.vue | 49 ++++++++++++++++++++++++--- src/components/wordDict/DictWrite.vue | 7 ++-- src/views/wordDict/wordDict.vue | 1 - 3 files changed, 50 insertions(+), 7 deletions(-) diff --git a/src/components/wordDict/DictCard.vue b/src/components/wordDict/DictCard.vue index 4d9b5da..8004a55 100644 --- a/src/components/wordDict/DictCard.vue +++ b/src/components/wordDict/DictCard.vue @@ -4,10 +4,12 @@ v-if="isWriteVisible" @close="isWriteVisible = false" :dataList="cateList" - @addCategory="addCategory" + @addCategory="addCategory" + @addWord="editWord" + :NumValue="item.WRDDICSEQ" :formValue="item.WRDDICCAT" - :titleValue="item.WRDDICTTL" - :contentValue="$common.contentToHtml(item.WRDDICCON)" + :titleValue="item.WRDDICTTL" + :contentValue="item.WRDDICCON" />
@@ -57,13 +59,16 @@