Header.vue 622 B

123456789101112131415
  1. <template>
  2. <header class="w-full flex justify-between gap-5 bg-stone-800 p-3 animate__animated animate__fadeInDown animate__faster">
  3. <Icon @click="sideBar.show()" name="solar:hamburger-menu-outline" class="w-8 h-8 hover:opacity-50 cursor-pointer duration-150" />
  4. <div class="flex-auto flex items-center font-semibold">
  5. UserName
  6. </div>
  7. <Icon name="basil:other-2-outline" class="w-8 h-8 hover:opacity-50 cursor-pointer duration-150" />
  8. </header>
  9. </template>
  10. <script setup lang="ts">
  11. import { useSideBar } from '~/store/useSideBar';
  12. const sideBar = useSideBar()
  13. </script>