naweigete-web/app.vue
2025-03-14 15:53:35 +08:00

45 lines
857 B
Vue

<template>
<AppHeader />
<NuxtPage />
</template>
<script lang="ts" setup>
useSeoMeta({
title: '河南纳威格特商贸有限公司',
ogTitle: '河南纳威格特商贸有限公司',
description: '河南纳威格特商贸有限公司',
ogDescription: '河南纳威格特商贸有限公司',
ogImage: 'https://example.com/image.png',
twitterCard: 'summary_large_image',
})
// $api.get(APIs.login)
// .then(() => {
// //
// })
// .catch((err: AxiosRequestError) => {
// console.dir(err)
// })
</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>