gjjd-web-nuxt
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
557 B

<script setup lang="ts">
useHead({
title: '工匠基地',
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
],
link: [
{ rel: 'icon', href: '/favicon.ico' }
],
htmlAttrs: {
lang: 'en'
}
})
useSeoMeta({
ogImage: 'https://landing-template.nuxt.dev/social-card.png',
twitterImage: 'https://landing-template.nuxt.dev/social-card.png',
twitterCard: 'summary_large_image'
})
</script>
<template>
<AppHeader />
<UMain>
<NuxtPage />
</UMain>
<AppFooter />
<UNotifications />
</template>