mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
14 lines
432 B
Vue
14 lines
432 B
Vue
<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>
|
|
A Mastodon client by Nuxt<br>
|
|
Built <span :title="buildTime">{{ buildTimeAgo }}</span> · <a href="https://github.com/antfu/nuxtodon" target="_blank">GitHub</a>
|
|
</div>
|
|
</template>
|