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 {