HomeBtn.vue 481 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div>
  3. <v-btn
  4. ref="btn"
  5. icon="fas fa-home"
  6. size="small"
  7. :href="homeUrl"
  8. class="ml-2 text-n-primary"
  9. />
  10. <v-tooltip :activator="btn" :text="$t('welcome')" location="bottom" />
  11. </div>
  12. </template>
  13. <script setup lang="ts">
  14. import {ref} from "@vue/reactivity";
  15. const runtimeConfig = useRuntimeConfig()
  16. const homeUrl = runtimeConfig.baseUrlAdminLegacy
  17. const btn = ref(null);
  18. </script>
  19. <style scoped>
  20. </style>