index.vue 711 B

12345678910111213141516171819202122232425262728
  1. <script setup lang="ts">
  2. import { ButtonAnimation } from '@/components'
  3. import ConfigureDrawer from './component/ConfigureDrawer.vue'
  4. import FullScreen from './component/FullScreen.vue'
  5. import Signout from './component/SignOut.vue'
  6. import ThemeDropdown from './component/ThemeDropdown.vue'
  7. defineOptions({
  8. name: 'Actions',
  9. })
  10. </script>
  11. <template>
  12. <div class="flex items-center gap-x-3">
  13. <ButtonAnimation
  14. :animation="false"
  15. tag="a"
  16. href="https://github.com/tenianon/lithe-admin"
  17. target="_blank"
  18. >
  19. <span class="iconify-[mdi--github] size-5" />
  20. </ButtonAnimation>
  21. <FullScreen />
  22. <ThemeDropdown />
  23. <ConfigureDrawer />
  24. <Signout />
  25. </div>
  26. </template>