2022-03-11 13:05:16 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
const isDialogOpen = ref(false);
|
|
|
|
</script>
|
2022-03-11 10:25:30 +00:00
|
|
|
|
|
|
|
<template>
|
2022-03-11 10:39:56 +00:00
|
|
|
<q-dialog v-model="isDialogOpen">
|
|
|
|
<q-card>
|
|
|
|
<q-card-section>Custom dialog which should be tested</q-card-section>
|
|
|
|
</q-card>
|
|
|
|
</q-dialog>
|
2022-03-11 10:25:30 +00:00
|
|
|
</template>
|