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.
29 lines
862 B
29 lines
862 B
<script setup lang="ts">
|
|
const nuxtApp = useNuxtApp()
|
|
const { activeHeadings, updateHeadings } = useScrollspy()
|
|
|
|
const links = computed(() => [])
|
|
|
|
nuxtApp.hooks.hookOnce('page:finish', () => {
|
|
updateHeadings([
|
|
document.querySelector('#features'),
|
|
document.querySelector('#pricing'),
|
|
document.querySelector('#testimonials'),
|
|
document.querySelector('#faq')
|
|
])
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<UHeader :links="links">
|
|
<template #logo>
|
|
<div class="flex items-center">
|
|
<NuxtImg src="https://oss.wsdns.cn/20240717/5db2fc954a3a4034a0572be5ecfe8208.jpg?x-oss-process=image/resize,m_fixed,w_100,h_100/quality,Q_90" :size="20" />
|
|
<text class="text-2xl ml-2">广西国昱数字科技有限公司</text>
|
|
</div>
|
|
</template>
|
|
<template #right>
|
|
<UColorModeButton size="sm" />
|
|
</template>
|
|
</UHeader>
|
|
</template>
|