11 lines
174 B
Vue
11 lines
174 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import Projects from "./Projects.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
|
|
<Projects />
|
|
</template>
|