4e4bfc75e3
* add view config btn and modal * show loading state * add note about keyboard
22 lines
463 B
Vue
22 lines
463 B
Vue
<template>
|
|
<BaseDialog>
|
|
<template #trigger>
|
|
<slot />
|
|
</template>
|
|
<template #description>
|
|
<div class="bg-white">
|
|
<img :src="qrCode" />
|
|
</div>
|
|
</template>
|
|
<template #actions>
|
|
<DialogClose as-child>
|
|
<BaseSecondaryButton>{{ $t('dialog.cancel') }}</BaseSecondaryButton>
|
|
</DialogClose>
|
|
</template>
|
|
</BaseDialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{ qrCode: string }>();
|
|
</script>
|