mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-07 10:14:35 +00:00
4342be29d7
* 🐳 chore: dependencies * 🐞 fix: minor style issues fixed background white patches in dark mode fixed the line height of the status label, which resulted in a bloated appearance * 🌈 style: lint * ✨ feat: about
28 lines
512 B
Vue
28 lines
512 B
Vue
<script setup lang="ts">
|
|
import { getEasytierVersion } from '~/composables/network'
|
|
|
|
const { t } = useI18n()
|
|
|
|
const etVersion = ref('')
|
|
|
|
onMounted(async () => {
|
|
etVersion.value = await getEasytierVersion()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Card>
|
|
<template #title>
|
|
Easytier - {{ t('about.version') }}: {{ etVersion }}
|
|
</template>
|
|
<template #content>
|
|
<p class="mb-1">
|
|
{{ t('about.description') }}
|
|
</p>
|
|
</template>
|
|
</Card>
|
|
</template>
|
|
|
|
<style scoped lang="postcss">
|
|
</style>
|