mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-10 07:55:36 +00:00
eba9504fc2
* refactor(gui): refactor gui to use RemoteClient trait and RemoteManagement component * feat(gui): Add network config saving and refactor RemoteManagement
28 lines
512 B
Vue
28 lines
512 B
Vue
<script setup lang="ts">
|
|
import { getEasytierVersion } from '~/composables/backend'
|
|
|
|
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>
|