16 lines
289 B
Vue
16 lines
289 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import StatusBar from "./StatusBar.vue";
|
|
import Previews from "./Previews.vue";
|
|
|
|
const store = useProjectsStore();
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
|
|
<StatusBar />
|
|
|
|
<Previews v-if="!store.loading" />
|
|
</template>
|