Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-21 03:19:19 +08:00

chore: 重命名 Breadcrumb 组件名

This commit is contained in:
pany 2022-08-23 14:36:43 +08:00
parent 0ad723eda8
commit 3f4283a962
3 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ import { useAppStore } from "@/store/modules/app"
import { useSettingsStore } from "@/store/modules/settings"
import { useUserStore } from "@/store/modules/user"
import { UserFilled } from "@element-plus/icons-vue"
import BreadCrumb from "../BreadCrumb/index.vue"
import Breadcrumb from "../Breadcrumb/index.vue"
import Hamburger from "../Hamburger/index.vue"
import ThemeSwitch from "@/components/ThemeSwitch/index.vue"
import Screenfull from "@/components/Screenfull/index.vue"
@ -39,9 +39,9 @@ const state = reactive({
</script>
<template>
<div class="navbar">
<div class="navigation-bar">
<Hamburger :is-active="sidebar.opened" class="hamburger" @toggle-click="state.toggleSideBar" />
<BreadCrumb class="breadcrumb" />
<Breadcrumb class="breadcrumb" />
<div class="right-menu">
<Screenfull v-if="showScreenfull" class="right-menu-item" />
<ThemeSwitch v-if="showThemeSwitch" class="right-menu-item" />
@ -81,7 +81,7 @@ const state = reactive({
</template>
<style lang="scss" scoped>
.navbar {
.navigation-bar {
height: var(--v3-navigationbar-height);
overflow: hidden;
background: #fff;

View File

@ -27,7 +27,7 @@
}
// 顶部导航栏
.navbar {
.navigation-bar {
background-color: $theme-bg-color;
.right-menu {
.svg-icon {