11 lines
286 B
Vue
11 lines
286 B
Vue
<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" :player="goStore.self"></SelfView>
|
|
</template> |