gejdr-frontend/components/ui/Logo.vue
Lucien Cartier-Tilet 620f5b34f0
initial commit
Base appearance of the website is done, now onto adding features
2025-02-16 18:21:37 +01:00

14 lines
308 B
Vue

<template>
<UAvatar v-if="avatar" :src="src" :alt="alt" />
<img v-else :alt="alt" :src="src" />
</template>
<script setup lang="ts">
interface Props {
avatar?: boolean;
src?: string;
alt?: string;
}
const { avatar = false, src = '/img/gege.png', alt = 'GéJDR' } = defineProps<Props>();
</script>