34 lines
622 B
Vue
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>
|