32 lines
530 B
Vue
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>
|