mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 15:13:30 +00:00
21 lines
807 B
Vue
21 lines
807 B
Vue
<script setup lang="ts">
|
|
import useMyAppConfig from '@/composables/useMyAppConfig'
|
|
import dayjs from 'dayjs'
|
|
|
|
const appConfig = useMyAppConfig()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-row flex-wrap gap-4 items-center text-sm opacity-60">
|
|
<div class="flex flex-row gap-1 opacity-100">
|
|
<NuxtLink href="https://github.com/keven1024/015" target="_blank" class="text-primary hover:underline">015</NuxtLink>
|
|
{{ appConfig?.version ?? 'dev' }}
|
|
</div>
|
|
|
|
<div v-if="appConfig?.build_time">
|
|
{{ `Build at ${dayjs(appConfig?.build_time * 1000).format('YYYY-MM-DD')}` }}
|
|
</div>
|
|
<div>Designed by <NuxtLink href="https://fudaoyuan.icu" target="_blank" class="text-primary hover:underline">keven1024</NuxtLink></div>
|
|
</div>
|
|
</template>
|