logo.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <script setup lang="ts">
  2. import { useNav } from "/@/layout/hooks/useNav";
  3. const props = defineProps({
  4. collapse: Boolean
  5. });
  6. const { title } = useNav();
  7. </script>
  8. <template>
  9. <div class="sidebar-logo-container" :class="{ collapse: props.collapse }">
  10. <transition name="sidebarLogoFade">
  11. <router-link
  12. v-if="props.collapse"
  13. key="props.collapse"
  14. :title="title"
  15. class="sidebar-logo-link"
  16. to="/"
  17. >
  18. <FontIcon icon="team-iconlogo" svg style="width: 35px; height: 35px" />
  19. <span class="sidebar-title">{{ title }}</span>
  20. </router-link>
  21. <router-link
  22. v-else
  23. key="expand"
  24. :title="title"
  25. class="sidebar-logo-link"
  26. to="/"
  27. >
  28. <FontIcon icon="team-iconlogo" svg style="width: 35px; height: 35px" />
  29. <span class="sidebar-title">{{ title }}</span>
  30. </router-link>
  31. </transition>
  32. </div>
  33. </template>
  34. <style lang="scss" scoped>
  35. .sidebar-logo-container {
  36. position: relative;
  37. width: 100%;
  38. height: 48px;
  39. text-align: center;
  40. overflow: hidden;
  41. .sidebar-logo-link {
  42. height: 100%;
  43. overflow: hidden;
  44. white-space: nowrap;
  45. text-overflow: ellipsis;
  46. margin-top: 5px;
  47. .sidebar-title {
  48. display: block;
  49. width: 160px;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. white-space: nowrap;
  53. text-align: left;
  54. color: #1890ff;
  55. font-weight: 600;
  56. font-size: 20px;
  57. margin-top: 10px;
  58. font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
  59. }
  60. }
  61. .collapse {
  62. .sidebar-logo {
  63. margin-right: 0;
  64. }
  65. }
  66. }
  67. </style>