Front rewrite

This commit is contained in:
2024-05-05 18:53:16 +02:00
parent e70cddefc1
commit d12d4f67ff
16 changed files with 508 additions and 345 deletions
-11
View File
@@ -1,11 +0,0 @@
<script setup lang="ts">
import goStore from '@/netcode';
</script>
<template>
<div v-for="[k, l] in goStore.players">
<PlayerSlot :player="l" v-if="l !== goStore.self" :key="k" />
</div>
<SelfView v-if="goStore.self"></SelfView>
</template>