36 lines
1.2 KiB
Vue
Raw Normal View History

2022-12-05 23:01:12 +08:00
<template>
2024-03-23 17:21:39 +08:00
<div class="flex flex-row h-14 w-full drop-shadow border-l border-gray-200" style="background-color: var(--header-bg-color)">
<div class="flex flex-row justify-between w-full h-14">
2022-12-05 23:01:12 +08:00
<div class="flex flex-row min-w-[17rem]">
<div class="h-full flex items-center w-8 ml-2 hover:cursor-pointer" @click="store.changeExpaned">
<Icon name="list-bullet" class="w-6 h-8" />
</div>
<div class="w-96 flex items-center pl-3 sm:pl-0">
<Breadcrumbs />
</div>
</div>
<div class="flex w-52 sm:min-w-[18rem] flex-row item-center pl-1 sm:pl-0 justify-end sm:justify-between mr-4">
<div class="w-3/5 hidden sm:flex">
<!-- 搜索 -->
2022-12-06 22:19:23 +08:00
<MenuSearch />
2022-12-05 23:01:12 +08:00
<!-- 多语言 -->
<Lang />
<!-- 暗黑主题 -->
<Theme />
<Notification />
</div>
<Profile />
</div>
</div>
</div>
2024-03-23 17:21:39 +08:00
<Tabs/>
2022-12-05 23:01:12 +08:00
</template>
<script setup lang="ts">
import { useAppStore } from '/admin/stores/modules/app'
import Notification from './notification.vue'
2022-12-07 19:28:57 +08:00
import MenuSearch from './menuSearch.vue'
2024-03-23 17:21:39 +08:00
import Tabs from './tabs.vue'
2022-12-05 23:01:12 +08:00
const store = useAppStore()
</script>