ct/app/pages/softwareDevelopment/app.vue

29 lines
639 B
Vue
Raw Normal View History

2025-10-07 15:24:33 +08:00
<script lang="ts" setup>
2025-10-16 09:19:26 +08:00
import {useHead} from "#app";
2025-10-07 15:24:33 +08:00
2025-10-16 09:19:26 +08:00
// 使用 Nuxt 3 的 useHead 来管理头部资源
useHead({
link: [
{rel: 'stylesheet', href: '/css/bootstrap.min.css'},
{rel: 'stylesheet', href: '/css/main2.css'},
{rel: 'stylesheet', href: '/css/computer_public.css'},
2025-10-20 09:27:37 +08:00
{rel: 'stylesheet', href: '/css/headORfooter.css'},
2025-10-16 09:19:26 +08:00
{rel: 'stylesheet', href: '/css/mobile_App.css'},
{rel: 'stylesheet', href: '/css/yuxi2019.css'}
],
script: [
{src: '/js/index.js'},
{src: '/js/gopcOm.js'}
]
})
2025-10-07 15:24:33 +08:00
</script>
<template>
<view>
<SoftwareDevelopmentApp/>
</view>
</template>
<style scoped>
</style>