2022-11-15 17:14:10 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
// eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error
|
|
|
|
// @ts-ignore build time
|
|
|
|
const buildTime = __BUILD_TIME__
|
|
|
|
const buildTimeAgo = useTimeAgo(buildTime)
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div p4 text-sm op25>
|
2022-11-16 02:02:43 +00:00
|
|
|
A Mastodon client by Nuxt<br>
|
2022-11-15 17:14:10 +00:00
|
|
|
Built <span :title="buildTime">{{ buildTimeAgo }}</span> · <a href="https://github.com/antfu/nuxtodon" target="_blank">GitHub</a>
|
|
|
|
</div>
|
|
|
|
</template>
|