From 222614b8566eb17006885cbad2f938c39608df82 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Fri, 18 Oct 2024 19:27:22 +0200 Subject: [PATCH] Moved GmTools and GmPanel to App.vue --- src/App.vue | 5 +++++ src/screens/Game.vue | 5 ----- src/screens/ZoneEditor.vue | 5 ----- 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/App.vue b/src/App.vue index c4d4ede..64f9b9b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,8 @@ @@ -7,6 +10,8 @@ import { useGameStore } from '@/stores/gameStore' import { useZoneEditorStore } from '@/stores/zoneEditorStore' import Notifications from '@/components/utilities/Notifications.vue' +import GmTools from '@/components/gameMaster/GmTools.vue' +import GmPanel from '@/components/gameMaster/GmPanel.vue' import Login from '@/screens/Login.vue' import Characters from '@/screens/Characters.vue' import Game from '@/screens/Game.vue' diff --git a/src/screens/Game.vue b/src/screens/Game.vue index 872e9ef..6432a9e 100644 --- a/src/screens/Game.vue +++ b/src/screens/Game.vue @@ -1,8 +1,5 @@