Files
pihkaal-me/app/components/Projects/BottomScreen/BottomScreen.vue

16 lines
254 B
Vue

<script setup lang="ts">
import Background from "./Background.vue";
import Projects from "./Projects.vue";
const store = useProjectsStore();
store.$reset();
await store.loadProjects();
</script>
<template>
<Background />
<Projects />
</template>