mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 21:26:42 +01:00
35 lines
1.0 KiB
Vue
35 lines
1.0 KiB
Vue
<script setup>
|
|
import twofaccountService from '@/services/twofaccountService'
|
|
import Spinner from '@/components/Spinner.vue'
|
|
|
|
const router = useRouter()
|
|
const route = useRoute()
|
|
const qrcode = ref()
|
|
|
|
onBeforeMount(() => {
|
|
getQRcode()
|
|
})
|
|
|
|
/**
|
|
* Get a QR code image resource from backend
|
|
*/
|
|
async function getQRcode () {
|
|
const { data } = await twofaccountService.getQrcode(route.params.twofaccountId)
|
|
qrcode.value = data.qrcode
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="modal modal-otp is-active">
|
|
<div class="modal-background"></div>
|
|
<div class="modal-content">
|
|
<p class="has-text-centered m-5">
|
|
<img v-if="qrcode" :src="qrcode" class="has-background-light" :alt="$t('commons.image_of_qrcode_to_scan')">
|
|
<Spinner :isVisible="!qrcode" :type="'raw'" class="is-size-1" />
|
|
</p>
|
|
</div>
|
|
<div class="fullscreen-footer">
|
|
<ButtonBackCloseCancel action="close" />
|
|
</div>
|
|
</div>
|
|
</template> |