Files
estel_docs/app/components/LogoPro.vue
2025-07-29 00:32:57 +08:00

15 lines
420 B
Vue

<template>
<div class="h-8">
<NuxtLink
to="/"
class="flex items-center space-x-3"
>
<div class="w-8 h-8 bg-primary rounded-xl flex items-center justify-center shadow-md">
<span class="text-white font-bold text-lg">E</span>
</div>
<span class="text-lg font-bold text-gray-800 dark:text-white">简单文档</span>
<TemplateMenu />
</NuxtLink>
</div>
</template>