ct/app/pages/about.vue
2025-10-16 09:52:07 +08:00

32 lines
600 B
Vue

<script lang="ts" setup>
import {useHead} from "#app";
// 使用 Nuxt 3 的 useHead 来管理头部资源
useHead({
link: [
{rel: 'stylesheet', href: '/css/bootstrap.min.css'},
{rel: 'stylesheet', href: '/css/main2.css'},
{rel: 'stylesheet', href: '/css/about2019.css'},
{rel: 'stylesheet', href: '/css/yuxi2019.css'}
],
script: [
{src: '/js/index.js'},
{src: '/js/gopcOm.js'}
]
})
// 设置页面布局
// definePageMeta({
// layout: 'about'
// })
</script>
<template>
<div>
<AboutUs/>
</div>
</template>
<style scoped>
/* 页面特定样式 */
</style>