Files
evilspins/app/pages/design.vue
valere 9e697822e4
All checks were successful
Deploy App / deploy (push) Successful in 1m49s
studio v1
2025-09-20 17:18:29 +02:00

18 lines
558 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()">
<box :compilation="compilation" template="full" />
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { useDataStore } from '@/store/dataStore'
const store = useDataStore()
</script>