Polarcraft/webv2/pages/team.vue
Xeovalyte fbcd0d1bb9
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 1s
Build and Deploy / Deploy Discord Bot (push) Failing after 1s
feat: Added team page
2023-06-24 13:27:33 +02:00

16 lines
248 B
Vue

<template>
<div>
<TeamDefault v-if="user.team" />
<TeamNone v-else />
</div>
</template>
<script lang="ts" setup>
definePageMeta({
middleware: ['auth'],
title: 'Team | Polarcraft'
})
const user = useState<IUser>('user')
</script>