Files
web/app/components/imports/IMEIButton.vue
2026-05-21 16:54:07 +07:00

32 lines
530 B
Vue

<script setup>
const props = defineProps({
variant: Object,
});
</script>
<template>
<a
@click="
$emit('clickevent', {
name: 'dataevent',
data: {
modal: {
component: 'imports/IMEIs',
title: 'IMEIs',
width: '80%',
height: '400px',
vbind: { variant: props.variant },
},
},
})
"
>
<span class="icon">
<Icon
name="mdi:launch"
:size="18"
/>
</span>
</a>
</template>