Files
vue3-element-admin/src/layout/components/NavBar/index.vue
2024-07-06 10:19:13 +08:00

34 lines
622 B
Vue

<template>
<div class="navbar-container">
<!-- 导航栏面包屑 -->
<div class="flex">
<hamburger
:is-active="appStore.sidebar.opened"
@toggle-click="toggleSideBar"
/>
<breadcrumb />
</div>
<!-- 导航栏右侧 -->
<NavbarAction />
</div>
</template>
<script setup lang="ts">
import { useAppStore } from "@/store";
const appStore = useAppStore();
function toggleSideBar() {
appStore.toggleSidebar();
}
</script>
<style lang="scss" scoped>
.navbar-container {
@apply flex-x-between;
height: $navbar-height;
background: var(--el-bg-color);
}
</style>