wf4/components/Technology/Technology.vue
2024-05-24 09:09:46 +02:00

24 lines
589 B
Vue

<style scoped src="./Technology.css"/>
<template>
<div class="Technology flex-col" :class="[size]">
<a v-if="link" :href="link" target="_blank" rel="noopener noreferrer">
<img loading="lazy" :src="img" :alt="name" :width="size === 'm' ? 30 : 50" :height="size === 'm' ? 30 : 50" :class="[size]"/>
</a>
<img v-else :src="img" :alt="name"/>
<span class="tip">{{name}}</span>
</div>
</template>
<script setup lang="ts">
type Props = {
img: string
name: string
link?: string
size?: 'm' | 'l'
}
withDefaults(defineProps<Props>(), {
size: 'm'
})
</script>