designtopack/src/views/Home.vue
2024-09-24 12:23:49 +02:00

9 lines
136 B
Vue

<template>
<main>
<Projects />
</main>
</template>
<script setup>
import Projects from "../components/Projects.vue";
</script>