Added Team System

This commit is contained in:
2023-05-09 13:57:01 +02:00
parent 10183ac56b
commit d2ab24ed64
37 changed files with 1733 additions and 665 deletions

View File

@@ -3,6 +3,15 @@
<h1 class="text-2xl font-bold text-primary">
Team
</h1>
<TeamNone />
<TeamNone v-if="!user.team" />
<TeamDefault v-else />
</div>
</template>
<script setup>
const user = useState('user')
definePageMeta({
middleware: ["auth"]
})
</script>