Files
wp-headless/wp-content/themes/moonshine/app/components/site/SiteHeader.vue

12 lines
194 B
Vue

<script setup lang="ts">
const title = "Moonshine";
</script>
<template>
<UHeader :title="title">
<template #right>
<AuthConnexionButton />
</template>
</UHeader>
</template>