17 lines
No EOL
247 B
Vue
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> |