From cb561395ffad22f9c8c20563af7297521f0c249f Mon Sep 17 00:00:00 2001 From: Spythere Date: Wed, 12 Jul 2023 01:20:22 +0200 Subject: [PATCH] =?UTF-8?q?hotfixy=20komponent=C3=B3w?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 6 ++++-- src/components/cards/RealStockCard.vue | 2 -- src/components/sections/StockSection.vue | 21 ++++++++++++++++--- src/components/sections/TrainImageSection.vue | 2 +- src/components/tabs/WikiListTab.vue | 16 ++++++++++++-- .../utils/ImageFullscreenPreview.vue | 17 ++++++++++++--- 6 files changed, 51 insertions(+), 13 deletions(-) diff --git a/src/App.vue b/src/App.vue index 7a5266d..c862502 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,6 @@ @@ -8,6 +9,7 @@ import { defineComponent } from 'vue'; import { useStore } from './store'; import ImageFullscreenPreview from './components/utils/ImageFullscreenPreview.vue'; import AppContainerView from './views/AppContainerView.vue'; +import AppModals from './components/app/AppModals.vue'; export default defineComponent({ data() { @@ -24,7 +26,7 @@ export default defineComponent({ this.store.fetchStockInfoData(); this.store.handleRouting(); }, - components: { ImageFullscreenPreview, AppContainerView }, + components: { ImageFullscreenPreview, AppContainerView, AppModals }, }); diff --git a/src/components/cards/RealStockCard.vue b/src/components/cards/RealStockCard.vue index 3e87798..42c3401 100644 --- a/src/components/cards/RealStockCard.vue +++ b/src/components/cards/RealStockCard.vue @@ -1,6 +1,4 @@