feat: display projects as pokemons in pokemon platinum

This commit is contained in:
2025-12-11 17:16:00 +01:00
parent c6ee0a7550
commit 3b34961f0d
59 changed files with 393 additions and 480 deletions

View File

@@ -1,7 +1,6 @@
<script setup lang="ts">
import Background from "./Background.vue";
import StatusBar from "./StatusBar.vue";
import Previews from "./Previews.vue";
import Project from "./Project.vue";
const store = useProjectsStore();
</script>
@@ -9,7 +8,5 @@ const store = useProjectsStore();
<template>
<Background />
<StatusBar />
<Previews v-if="!store.loading" />
<Project v-if="!store.loading" />
</template>