From 62886dd5bfecefaee125f2c6807c5680b9261a27 Mon Sep 17 00:00:00 2001 From: Spythere Date: Mon, 13 Feb 2023 15:07:13 +0100 Subject: [PATCH] =?UTF-8?q?sekcje:=20refactor=20plik=C3=B3w?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 8 ++++---- .../{ => sections}/InputsSection.vue | 14 +++++++------- src/components/{ => sections}/LogoSection.vue | 0 src/components/{ => sections}/StockSection.vue | 8 ++++---- .../{ => sections}/TrainImageSection.vue | 8 ++++---- .../{ => tabs}/NumberGeneratorTab.vue | 8 ++++---- .../{ => tabs}/StockGeneratorTab.vue | 10 +++++----- src/components/{ => tabs}/StockListTab.vue | 18 +++++++++--------- src/components/{ => utils}/StockThumbnails.vue | 4 ++-- 9 files changed, 39 insertions(+), 39 deletions(-) rename src/components/{ => sections}/InputsSection.vue (95%) rename src/components/{ => sections}/LogoSection.vue (100%) rename src/components/{ => sections}/StockSection.vue (83%) rename src/components/{ => sections}/TrainImageSection.vue (95%) rename src/components/{ => tabs}/NumberGeneratorTab.vue (95%) rename src/components/{ => tabs}/StockGeneratorTab.vue (97%) rename src/components/{ => tabs}/StockListTab.vue (97%) rename src/components/{ => utils}/StockThumbnails.vue (97%) diff --git a/src/App.vue b/src/App.vue index 1a76c3e..31277eb 100644 --- a/src/App.vue +++ b/src/App.vue @@ -46,13 +46,13 @@ import packageInfo from '.././package.json'; import { defineComponent } from 'vue'; -import InputsSection from './components/InputsSection.vue'; +import InputsSection from './components/sections/InputsSection.vue'; import { useStore } from './store'; -import TrainImageSection from './components/TrainImageSection.vue'; -import LogoSection from './components/LogoSection.vue'; +import TrainImageSection from './components/sections/TrainImageSection.vue'; +import LogoSection from './components/sections/LogoSection.vue'; import RealStockCard from './components/cards/RealStockCard.vue'; -import StockSection from './components/StockSection.vue'; +import StockSection from './components/sections/StockSection.vue'; export default defineComponent({ components: { diff --git a/src/components/InputsSection.vue b/src/components/sections/InputsSection.vue similarity index 95% rename from src/components/InputsSection.vue rename to src/components/sections/InputsSection.vue index d1cda42..613c45a 100644 --- a/src/components/InputsSection.vue +++ b/src/components/sections/InputsSection.vue @@ -107,12 +107,12 @@