designtopack/src/views/Home.vue

13 lines
210 B
Vue
Raw Normal View History

2024-07-11 12:42:29 +02:00
<template>
2024-09-17 17:03:13 +02:00
<Projects />
2024-07-11 12:42:29 +02:00
</template>
2024-09-02 14:33:21 +02:00
2024-07-11 12:42:29 +02:00
<script setup>
2024-09-02 14:31:50 +02:00
import Menu from "../components/Menu.vue";
2024-09-04 11:28:12 +02:00
import Projects from "../components/Projects.vue";
2024-07-11 12:42:29 +02:00
const { data } = defineProps({
data: Object,
});
</script>