15 lines
249 B
Vue
15 lines
249 B
Vue
<template>
|
|
<AdminPurchase v-if="authStore.isAdmin"/>
|
|
</template>
|
|
|
|
<script >
|
|
import { useAuthStore } from '@/stores/auth';
|
|
|
|
export default {
|
|
setup() {
|
|
const authStore = useAuthStore();
|
|
return { authStore };
|
|
},
|
|
}
|
|
</script>
|