diff --git a/src/views/contents/ContentEditorPage.vue b/src/views/contents/ContentEditorPage.vue index 00f12cc..bd30b59 100644 --- a/src/views/contents/ContentEditorPage.vue +++ b/src/views/contents/ContentEditorPage.vue @@ -3,17 +3,14 @@ import { ref } from 'vue'; import HTMLContentEditor from "@/views/contents/HTMLContentEditor.vue"; import QuickyContentEditor from "@/views/contents/QuickyContentEditor.vue"; - const showQuickyEditor = ref(true); const showHtmlEditor = ref(false); - const toggleQuickyEditor = () => { showQuickyEditor.value = true; showHtmlEditor.value = false; }; - const toggleHtmlEditor = () => { showHtmlEditor.value = true; showQuickyEditor.value = false; @@ -21,41 +18,52 @@ const toggleHtmlEditor = () => {