使用原生导航头

This commit is contained in:
WindowBird 2025-10-24 15:55:13 +08:00
parent 8ae294c795
commit cd17bd49ec

View File

@ -40,23 +40,23 @@ const items = computed<NavigationMenuItem[]>(() => [{
}, {
label: '应用实例',
to: 'https://go.nuxt.com/figma-ui',
target: '_blank'
to: '/example',
active: route.path.startsWith('/example')
}, {
label: '典型案例',
to: 'https://github.com/nuxt/ui/releases',
target: '_blank'
to: '/classic',
active: route.path.startsWith('/classic')
}, {
label: '新闻资讯',
to: '/docs/components',
to: '/news',
active: route.path.startsWith('/docs/components')
active: route.path.startsWith('/news')
}, {
label: '关于我们',
to: '/docs/components',
to: '/about',
active: route.path.startsWith('/docs/components')
active: route.path.startsWith('/about')
},
{
label: '联系我们',
@ -68,19 +68,19 @@ const items = computed<NavigationMenuItem[]>(() => [{
label: '后台管理',
to: '/contact',
active: route.path.startsWith('/123')
active: route.path.startsWith('/admin')
},
])
</script>
<template>
<UHeader
:ui="headerUI"
>
<!-- 标题部分 -->
<template #title>
<view class="h-6 w-auto text-white">
<view class="h-6 w-auto text-primary">
创特蜂箱
</view>
</template>
@ -89,9 +89,7 @@ const items = computed<NavigationMenuItem[]>(() => [{
<UNavigationMenu
:items="items"
:ui="{
link: 'text-white text-lg font-bold '
}"
highlight
highlight-color="primary"
/>
@ -109,5 +107,7 @@ const items = computed<NavigationMenuItem[]>(() => [{
</template>
</UHeader>
</template>
//:ui="headerUI"
//:ui="{link: 'text-white text-lg font-bold '}"