From f090f81759f48ceef0c0b3b39efdf47d00d6e274 Mon Sep 17 00:00:00 2001 From: liszt01 Date: Tue, 17 Oct 2023 22:38:53 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=E3=83=80=E3=82=A4=E3=82=A2=E3=83=AD?= =?UTF-8?q?=E3=82=B0=E3=82=92=E3=82=B3=E3=83=B3=E3=83=9D=E3=83=BC=E3=83=8D?= =?UTF-8?q?=E3=83=B3=E3=83=88=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/UpdateNotificationDialog.vue | 31 ++++++++++++++++++ voicevox_src/src/views/EditorHome.vue | 32 +++---------------- 2 files changed, 35 insertions(+), 28 deletions(-) create mode 100644 voicevox_src/src/components/UpdateNotificationDialog.vue diff --git a/voicevox_src/src/components/UpdateNotificationDialog.vue b/voicevox_src/src/components/UpdateNotificationDialog.vue new file mode 100644 index 0000000..d8f0050 --- /dev/null +++ b/voicevox_src/src/components/UpdateNotificationDialog.vue @@ -0,0 +1,31 @@ + + + diff --git a/voicevox_src/src/views/EditorHome.vue b/voicevox_src/src/views/EditorHome.vue index ef72f6c..4c1d198 100644 --- a/voicevox_src/src/views/EditorHome.vue +++ b/voicevox_src/src/views/EditorHome.vue @@ -7,6 +7,9 @@ + + + @@ -44,23 +47,6 @@ > Q&Aを見る - - - - - 新しいアップデートがあります! - - - - - - - (); const store = useStore(); @@ -866,12 +848,6 @@ watch(activeAudioKey, (audioKey) => { const showAddAudioItemButton = computed(() => { return store.state.showAddAudioItemButton; }); - -const showModal = ref(true); - -function closeModal() { - showModal.value = false; -}