20 lines
530 B
Vue
20 lines
530 B
Vue
<template>
|
|
<div class="absolute top-0 right-4 hidden lg:block" v-if="gameStore.world.date && typeof gameStore.world.date === 'object'">
|
|
<p class="text-white text-lg">
|
|
{{ useDateFormat(gameStore.world.date, 'YYYY/MM/DD HH:mm') }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useGameStore } from '@/stores/gameStore'
|
|
import { useDateFormat } from '@vueuse/core'
|
|
import { onUnmounted } from 'vue'
|
|
|
|
const gameStore = useGameStore()
|
|
|
|
onUnmounted(() => {
|
|
gameStore.connection?.off('date')
|
|
})
|
|
</script>
|