18 lines
305 B
Vue
18 lines
305 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import Buttons from "./Buttons.vue";
|
|
|
|
const store = useProjectsStore();
|
|
|
|
onMounted(async () => {
|
|
store.$reset();
|
|
await store.loadProjects();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
|
|
<Buttons v-if="!store.loading" />
|
|
</template>
|