Files
web/app/components/imports/EditProductButton.vue
2026-05-20 14:42:53 +07:00

33 lines
585 B
Vue

<script setup>
const props = defineProps({
variant: Object,
});
const showModal = ref(null);
</script>
<template>
<a
@click="
showModal = {
component: 'imports/EditProduct',
title: 'Cập nhật sản phẩm',
width: '90%',
height: '400px',
vbind: { variant: props.variant },
}
"
>
<span class="icon">
<Icon
name="material-symbols:edit-outline-rounded"
:size="18"
/>
</span>
</a>
<Modal
v-if="showModal"
v-bind="showModal"
@close="showModal = null"
/>
</template>