All files / src/components/organisms AppFooter.vue

100% Statements 23/23
100% Branches 0/0
100% Functions 0/0
100% Lines 23/23

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67  1x 1x 1x 1x 1x 1x 1x 1x   1x 1x 1x 1x 1x   1x 1x 1x 1x 1x 1x 1x         1x       1x             1x                                                        
<template>
  <v-footer app elevation="1" height="40">
    <v-container class="d-flex align-center justify-space-between text-caption">
      <div>&copy; 2025 Example</div>
      <v-spacer />
      <div class="d-flex ga-2">
        <RouterLink
          class="text-medium-emphasis"
          :to="{ name: 'Term'}"
        >
          {{ t('ui.page.term.title') }}
        </RouterLink>
        <RouterLink
          class="text-medium-emphasis"
          :to="{ name: 'Privacy'}"
        >
          {{ t('ui.page.privacy.title') }}
        </RouterLink>
      </div>
      <v-divider vertical class="mx-3" />
      <LanguageSwitcher />
    </v-container>
  </v-footer>
</template>
 
<script setup lang="ts">
// region Dependency Injection
import {useI18n} from "vue-i18n";
// endregion Dependency Injection
 
// region Component Injection
import LanguageSwitcher from "@/components/molecules/LanguageSwitcher.vue";
// endregion Component Injection
 
// region interface
// endregion interface
 
// region constants
const { t } = useI18n()
// endregion constants
 
// region props
// endregion props
 
// region variable
// endregion variable
 
// region properties
// endregion properties
 
// region emits
// endregion emits
 
// region validator
// endregion validator
 
// region methods
// endregion methods
 
// region export
// endregion export
</script>
 
<style scoped>
 
</style>