12 lines
152 B
Vue
12 lines
152 B
Vue
|
<template>
|
||
|
<div class="mt-5 text-primary">
|
||
|
Player Store
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
definePageMeta({
|
||
|
middleware: ["auth"]
|
||
|
})
|
||
|
</script>
|