Polarcraft/web/pages/player-store.vue

14 lines
202 B
Vue
Raw Normal View History

2023-05-11 19:46:18 +02:00
<template>
<div class="mt-5 text-primary">
Player Store
</div>
</template>
<script setup>
definePageMeta({
middleware: ["auth"]
})
2023-05-12 14:24:28 +02:00
useHead({ title: 'Player Stores | Polarcraft' })
2023-05-11 19:46:18 +02:00
</script>