Files
evilspins/app/pages/design.vue
valere 0c1cf30996
All checks were successful
Deploy App / deploy (push) Successful in 1m18s
first 3D model
2025-09-17 23:39:43 +02:00

18 lines
569 B
Vue

<template>
<div class="flex flex-wrap justify-center">
<div class="bg-page-dark-bg text-white">
<div class="flex flex-col-reverse bg-gradient-to-r from-primary to-primary-dark">
<div class="mt-8 flex flex-wrap justify-center"
v-for="compilation in store.getAllCompilations.slice().reverse()">
<compilationBox :compilation="compilation" template="full" />
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { useDataStore } from '@/store/dataStore'
const store = useDataStore()
</script>