12 lines
186 B
Vue
12 lines
186 B
Vue
<script setup>
|
|
defineOptions({
|
|
name: "ModalHeader",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col space-y-1.5 text-center sm:text-left mb-4">
|
|
<slot />
|
|
</div>
|
|
</template>
|