it-tools/src/pages/About.vue
2024-04-23 00:08:15 +08:00

9 lines
229 B
Vue

<script setup lang="ts">
import { useHead } from '@vueuse/head';
useHead({ title: 'About - Zeeklog Online Tools' });
</script>
<template>
<c-markdown :markdown="$t('about.content')" mx-auto mt-50px max-w-600px />
</template>