Dialog
- Файл: app/components/ui/dialog/Dialog.vue
Быстрый старт
<script setup lang="ts">
import { Dialog } from 'components/ui/dialog';
const text = ref<string>('Текст текст текст');
</script>
<template>
<Dialog
title="Title"
text="<p>Text<p>"
>
<template #trigger>
Trigger
</template>
<template #default>
Content
</template>
</Dialog>
</template>
API
Props
| Prop | Type | По умолчанию |
|---|---|---|
title | string | '' |
text | string | '' |
Slots
| Slot | Предназначение |
|---|---|
default | Содержимое модалки |
trigger | Кнопка для вызова модалки |