Polarcraft/webv2/pages/team.vue

18 lines
276 B
Vue
Raw Normal View History

2023-06-24 13:27:33 +02:00
<template>
<div>
<TeamDefault v-if="user.team" />
<TeamNone v-else />
</div>
</template>
<script lang="ts" setup>
definePageMeta({
middleware: ['auth'],
2023-06-24 13:47:40 +02:00
title: 'Team'
2023-06-24 13:27:33 +02:00
})
2023-06-24 13:47:40 +02:00
useHead({ title: 'Team | Polarcraft' })
2023-06-24 13:27:33 +02:00
const user = useState<IUser>('user')
</script>