This commit is contained in:
Viet An
2026-05-14 15:37:58 +07:00
parent 4d37397ee4
commit 1f44f9e6bf
17 changed files with 670 additions and 324 deletions

View File

@@ -0,0 +1,32 @@
<script setup>
const props = defineProps({
variant: Object,
});
const showModal = ref(null);
</script>
<template>
<button
@click="
showModal = {
component: 'imports/IMEIs',
title: 'IMEIs',
width: '80%',
height: '400px',
vbind: { variant: props.variant },
}
"
class="button is-small is-primary is-ghost"
>
<span class="icon">
<Icon
name="mdi:launch"
:size="22"
/>
</span>
</button>
<Modal
v-bind="showModal"
@close="showModal = null"
/>
</template>