Title.vue 597 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="d-flex flex-row">
  3. <a :href="homeUrl" :title="$t('go_back_home')" class="d-flex flex-row align-center">
  4. <v-img src="/favicon.ico" height="42" width="42" class="mr-2" />
  5. <span v-if="mdAndUp"><slot /></span>
  6. </a>
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. import { useHomeUrl } from '~/composables/utils/useHomeUrl'
  11. import { useDisplay } from 'vuetify'
  12. const { homeUrl } = useHomeUrl()
  13. const { mdAndUp } = useDisplay()
  14. </script>
  15. <style scoped lang="scss">
  16. a {
  17. color: rgb(var(--v-theme-on-primary)) !important;
  18. text-decoration: none;
  19. }
  20. </style>