mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
23 lines
409 B
Vue
23 lines
409 B
Vue
<template>
|
|
<div class="mock-modal">
|
|
<h2>{{ title }}</h2>
|
|
<p>{{ description }}</p>
|
|
<button
|
|
@click="$emit('close', 'test-result')"
|
|
>
|
|
Close
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { title = 'Test Modal', description = 'Test Description' } = defineProps<{
|
|
title?: string
|
|
description?: string
|
|
}>()
|
|
|
|
defineEmits<{
|
|
close: [value: string]
|
|
}>()
|
|
</script>
|