salix-front/test/jest/__tests__/demo/MyDialog.vue

13 lines
290 B
Vue
Raw Normal View History

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>
<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>