11 lines
242 B
Vue
11 lines
242 B
Vue
<script setup lang="ts">
|
|
import goStore from '@/netcode';
|
|
|
|
const players = useState<{ [key: string]: any }>('players')
|
|
</script>
|
|
|
|
<template>
|
|
<div v-for="[i, p] in goStore.players">
|
|
<PlayerSlot :player="p" />
|
|
</div>
|
|
</template> |