mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-15 19:22:21 +01:00
Migration to Nuxt3
This commit is contained in:
19
components/resume/ProgrammingLogo.vue
Normal file
19
components/resume/ProgrammingLogo.vue
Normal file
@ -0,0 +1,19 @@
|
||||
<template>
|
||||
|
||||
<div class="inline-block">
|
||||
<div class="flex items-center">
|
||||
<img :src="props.logo" alt="" :class="`h-5 mr-1 ${props.needInvert ? 'dark:invert' : ''}`">
|
||||
{{ props.language }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
|
||||
<script setup lang="ts">
|
||||
const props = defineProps({
|
||||
language: String,
|
||||
logo: String,
|
||||
needInvert: Boolean
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user