mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
10 lines
255 B
Vue
10 lines
255 B
Vue
<script setup lang="ts">
|
|
const { t } = useI18n();
|
|
</script>
|
|
<template>
|
|
<div class="justify-center align-center text-center">
|
|
<h1 class="text-2xl text-bold">{{ t("pages.tos.title") }}</h1>
|
|
<p>{{ t("pages.tos.content") }}</p>
|
|
</div>
|
|
</template>
|