14 lines
202 B
Vue
14 lines
202 B
Vue
<template>
|
|
<div class="mt-5 text-primary">
|
|
Player Store
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
middleware: ["auth"]
|
|
})
|
|
|
|
useHead({ title: 'Player Stores | Polarcraft' })
|
|
</script>
|