whois/pages/index.vue
2024-03-02 21:10:05 +08:00

29 lines
442 B
Vue

<script setup lang="ts">
import {useStyleStore} from "~/stores/style";
const styleStore = useStyleStore()
styleStore.setIsPage(false)
const {t} = useI18n()
useHead({
title: `${t('index.title')} - ${t('app.title')}`,
meta: [
{
name: 'description',
content: t('index.description')
},{
name: 'keywords',
content: t('index.keywords')
}
]
})
</script>
<template>
</template>
<style scoped>
</style>