wf4/app/components/Project.vue
2025-06-05 07:50:50 +02:00

17 lines
No EOL
247 B
Vue

<template>
<article class="Project">
</article>
</template>
<script setup lang="ts">
import type { Skill } from '~/utils/skills'
type Props = {
img : string
company : string
title : string
link ?: string
tech : Skill[]
}
</script>