headerRight.vue 589 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="header_right">
  3. <div>
  4. <img src="" alt="">
  5. <span>管理后台</span>
  6. </div>
  7. <div>
  8. <img src="" alt="">
  9. <span>用户名称</span>
  10. </div>
  11. </div>
  12. </template>
  13. <script setup>
  14. import { ref } from "vue"
  15. import Logo from '@/assets/logo.svg'
  16. </script>
  17. <style scoped lang="scss">
  18. .header_right {
  19. display: flex;
  20. div {
  21. img {
  22. vertical-align: middle;
  23. }
  24. span {
  25. padding: 10px;
  26. line-height: 60px;
  27. }
  28. }
  29. }
  30. </style>