2025-04-01 17:45:42 +08:00

43 lines
838 B
Vue

<template>
<AppHeader />
<NuxtPage />
<AppFooter/>
</template>
<script lang="ts" setup>
import $api from '@/service/webRequest'
import { useStore } from '~/store'
import { useI18n } from 'vue-i18n'
const { locale } = useI18n()
useSeoMeta({
title: '信阳第五人民医院',
ogTitle: '信阳第五人民医院',
description: '信阳第五人民医院',
ogDescription: '信阳第五人民医院',
ogImage: 'https://example.com/image.png',
twitterCard: 'summary_large_image',
})
</script>
<style>
#__nuxt{
height: 100%;
width: 100%;
}
html,
body {
position: relative;
height: 100%;
}
body {
background: #eee;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 14px;
color: #000;
margin: 0;
padding: 0;
}
</style>