musicIndex.vue 648 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <script setup lang="ts">
  2. import {defineComponent} from "vue";
  3. defineComponent({
  4. name: "musicIndex"
  5. })
  6. </script>
  7. <template>
  8. <div class="fc-app-window flex">
  9. <div class="side-bar">
  10. <div class="side-title">
  11. FC-MUSIC
  12. </div>
  13. <!-- 侧边栏 -->
  14. <div class="search-input">
  15. </div>
  16. </div>
  17. </div>
  18. </template>
  19. <style scoped>
  20. @import "../../assets/public.css";
  21. .side-bar
  22. {
  23. width: 210px;
  24. height: 100%;
  25. border-right: 1px solid var(--color-border);
  26. }
  27. .side-bar .side-title{
  28. width: 100%;
  29. height: 50px;
  30. line-height: 50px;
  31. font-size: larger;
  32. display: block;
  33. padding-left: 0.8em;
  34. }
  35. </style>