feat : concept creation
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
import { useUserStore } from "~/store/user.store";
|
||||
import { useLobbyStore } from "./store/lobby.store";
|
||||
import { useConceptStore } from "./store/concepts.store";
|
||||
const userStore = useUserStore();
|
||||
const lobbyStore = useLobbyStore();
|
||||
const conceptStore = useConceptStore()
|
||||
|
||||
void userStore.whoami();
|
||||
void conceptStore.fetchConceptTypes();
|
||||
void lobbyStore.fetchGames();
|
||||
|
||||
userStore.whoami();
|
||||
lobbyStore.fetchGames();
|
||||
onBeforeMount(() => {
|
||||
lobbyStore.subscribe();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user