Files
web/app/components/application/ApplicationImage.vue
2026-05-05 11:06:49 +07:00

21 lines
419 B
Vue

<template>
<ImageGallery
v-bind="{ row, pagename, show, api: 'applicationfile' }"
@remove="emit('remove')"
@update="update"
></ImageGallery>
</template>
<script setup>
import ImageGallery from "../media/ImageGallery.vue";
import { defineProps, defineEmits } from "vue";
const props = defineProps({
row: Object,
pagename: String,
api: String,
});
const emit = defineEmits(["remove"]);
</script>