generated from pascalmartineau/wp-skeleton
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m2s
16 lines
569 B
Vue
16 lines
569 B
Vue
<script setup lang="ts">
|
|
const { profiles } = await useSiteOptions();
|
|
const { menuItems } = await useMenuItems("TOP");
|
|
const { breakpoints } = useResponsive();
|
|
const showLabels = breakpoints.greaterOrEqual("sm");
|
|
</script>
|
|
|
|
<template>
|
|
<UContainer class="flex items-center gap-1.5">
|
|
<UiSocialProfiles :profiles="profiles" class="mr-auto" />
|
|
<UNavigationMenu :items="menuItems" variant="link" content-orientation="vertical" />
|
|
<SiteHeaderTopAuth :show-labels="showLabels" />
|
|
<SiteHeaderTopMember :show-labels="showLabels" />
|
|
</UContainer>
|
|
</template>
|