From eec6d2d4398858761c0fe0aeb21578091772965b Mon Sep 17 00:00:00 2001 From: Ilia Miheev Date: Sat, 21 Mar 2026 13:32:15 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=BF=D1=80=D0=BE=D1=81=D0=BC=D0=BE=D1=82?= =?UTF-8?q?=D1=80=20=D0=BA=D0=BE=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 47 ++++++++++++++++++++----------------- src/components/CodeView.vue | 40 +++++++++++++++++++++++++++++++ src/components/MyDialog.vue | 2 +- 3 files changed, 66 insertions(+), 23 deletions(-) create mode 100644 src/components/CodeView.vue diff --git a/src/App.vue b/src/App.vue index c77839a..d46a8e0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,12 +7,14 @@ import MyDropMenu from "@/components/MyDropMenu.vue"; import copyToclipboard from "@/shared/copyToclipboard"; import ContextMenu from "@imengyu/vue3-context-menu"; import CustomButton from '@/components/UI/CustomButton.vue' +import CodeView from "@/components/CodeView.vue"; const numbers = ref([]); // Инициализируем массив с пустыми строками const clickCount = ref(1); // Счетчик нажатий const listOfTrips = ref([]); const isModalVisible = ref(false); -let finallyText = ref(""); +const isCodeViewVisible = ref(false); +const finallyText = ref(""); onMounted(() => { for (let i = 0; i < 100; i++) { @@ -293,7 +295,7 @@ function onContextMenu(e, item) { \ No newline at end of file diff --git a/src/components/MyDialog.vue b/src/components/MyDialog.vue index 1c54557..68f556a 100644 --- a/src/components/MyDialog.vue +++ b/src/components/MyDialog.vue @@ -52,7 +52,7 @@ const props = defineProps({ display: flex; justify-content: center; align-items: center; - z-index: 999; + z-index: 998; } .modal {