diff --git a/app/frontend/src/App.vue b/app/frontend/src/App.vue index dcd56ce..0b1d81d 100644 --- a/app/frontend/src/App.vue +++ b/app/frontend/src/App.vue @@ -1,7 +1,12 @@ @@ -9,6 +14,10 @@ import { useIRCStore } from "@/stores/irc"; import Chat from "@/components/Chat.vue"; import Login from "@/components/Login.vue"; +import Register from "@/components/Register.vue"; +import { useAccountStore } from "./stores/accountStore"; const ircStore = useIRCStore(); +const accountStore = useAccountStore(); +const { showRegistration } = storeToRefs(accountStore); diff --git a/app/frontend/src/components/Chat.vue b/app/frontend/src/components/Chat.vue index 0e3e7ad..82c6ca4 100644 --- a/app/frontend/src/components/Chat.vue +++ b/app/frontend/src/components/Chat.vue @@ -10,6 +10,7 @@ const accountStore = useAccountStore();