1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <script setup lang="ts">
- import { useNav } from "/@/layout/hooks/useNav";
- const props = defineProps({
- collapse: Boolean
- });
- const { title } = useNav();
- </script>
- <template>
- <div class="sidebar-logo-container" :class="{ collapse: props.collapse }">
- <transition name="sidebarLogoFade">
- <router-link
- v-if="props.collapse"
- key="props.collapse"
- :title="title"
- class="sidebar-logo-link"
- to="/"
- >
- <FontIcon icon="team-iconlogo" svg style="width: 35px; height: 35px" />
- <span class="sidebar-title">{{ title }}</span>
- </router-link>
- <router-link
- v-else
- key="expand"
- :title="title"
- class="sidebar-logo-link"
- to="/"
- >
- <FontIcon icon="team-iconlogo" svg style="width: 35px; height: 35px" />
- <span class="sidebar-title">{{ title }}</span>
- </router-link>
- </transition>
- </div>
- </template>
- <style lang="scss" scoped>
- .sidebar-logo-container {
- position: relative;
- width: 100%;
- height: 48px;
- text-align: center;
- overflow: hidden;
- .sidebar-logo-link {
- height: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin-top: 5px;
- .sidebar-title {
- display: block;
- width: 160px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: left;
- color: #1890ff;
- font-weight: 600;
- font-size: 20px;
- margin-top: 10px;
- font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
- }
- }
- .collapse {
- .sidebar-logo {
- margin-right: 0;
- }
- }
- }
- </style>
|