mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
13 lines
394 B
Vue
13 lines
394 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n();
|
|
</script>
|
|
<template>
|
|
<div class="gap-2 flex flex-row">
|
|
<!--版權資訊-->
|
|
<span class="text-sm">1.0.0</span>
|
|
<span class="text-sm">|</span>
|
|
<span class="text-sm">MIT {{ t("app.license") }}</span>
|
|
<span class="text-sm">|</span>
|
|
<span class="text-sm">{{ new Date().getFullYear() }} © yh</span>
|
|
</div>
|
|
</template>
|