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