TOPVERSE_Official/components/PageView.vue

14 lines
311 B
Vue
Raw Normal View History

2023-04-23 14:19:03 +08:00
<script setup lang="ts">
const { data } = await useFetch('/api/pageview')
const time = useTimeAgo(() => data.value?.startAt || 0)
</script>
<template>
<div text-gray:80>
<span font-500 text-gray>{{ data?.pageview }}</span>
page views since
<span text-gray>{{ time }}</span>
</div>
</template>