diff --git a/src/views/contents/ContentEditorPage.vue b/src/views/contents/ContentEditorPage.vue index 24e67a8..00f12cc 100644 --- a/src/views/contents/ContentEditorPage.vue +++ b/src/views/contents/ContentEditorPage.vue @@ -3,17 +3,17 @@ import { ref } from 'vue'; import HTMLContentEditor from "@/views/contents/HTMLContentEditor.vue"; import QuickyContentEditor from "@/views/contents/QuickyContentEditor.vue"; -// Variables réactives pour gérer l'état des éditeurs -const showQuickyEditor = ref(true); // Par défaut, Quicky Editor est affiché + +const showQuickyEditor = ref(true); const showHtmlEditor = ref(false); -// Fonction pour afficher le Quicky Editor + const toggleQuickyEditor = () => { showQuickyEditor.value = true; showHtmlEditor.value = false; }; -// Fonction pour afficher le HTML Editor + const toggleHtmlEditor = () => { showHtmlEditor.value = true; showQuickyEditor.value = false; @@ -28,12 +28,12 @@ const toggleHtmlEditor = () => { - -