#40 feat: add catalogue images CRUD and display in product catalog

This commit is contained in:
mono
2026-06-13 16:32:44 -05:00
parent 78dfea8714
commit a2ab4fceb7
7 changed files with 425 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
<template>
<CatalogueImagesManagement v-if="authStore.isAdmin" />
</template>
<script setup>
import { useAuthStore } from '@/stores/auth';
import CatalogueImagesManagement from '@/components/CatalogueImagesManagement.vue';
const authStore = useAuthStore();
</script>