styling changes, added basic logics for registering accounts

This commit is contained in:
2024-05-03 18:55:00 +02:00
parent 095e41cfb4
commit 4d4df7cd99
3 changed files with 32 additions and 12 deletions

View File

@ -7,11 +7,11 @@
<script setup lang="ts">
import Game from '@/components/Game.vue'
import Login from '@/components/screens/Login.vue'
import config from '@/config'
import { onMounted, type Ref, ref } from 'vue'
import SocketioService from '@/services/socketio.service';
const screen:Ref<string> = ref('login');
import SocketioService from '@/services/socketio.service';
onMounted(() => {
SocketioService.setupSocketConnection();
});