mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
64 lines
1.9 KiB
Vue
64 lines
1.9 KiB
Vue
<template>
|
|
<v-dialog width="440" v-model="showState">
|
|
<v-card class="pa-2 pa-sm-4 pa-md-4">
|
|
<template #title>
|
|
<div class="d-flex align-center justify-center">
|
|
<h4 class="text-h4">{{ $t('Use on Mobile Device') }}</h4>
|
|
</div>
|
|
</template>
|
|
<template #subtitle>
|
|
<div class="text-body-1 text-center text-wrap mt-4">{{ $t('You can scan the QR code below on your mobile device.') }}</div>
|
|
</template>
|
|
<v-card-text class="mb-md-4">
|
|
<v-row>
|
|
<v-col cols="12" md="12">
|
|
<div class="w-100 d-flex justify-center">
|
|
<img alt="qrcode" class="img-url-qrcode" :src="mobileUrlQrCodePath" />
|
|
</div>
|
|
</v-col>
|
|
</v-row>
|
|
</v-card-text>
|
|
<v-card-text class="overflow-y-visible">
|
|
<div class="w-100 d-flex justify-center gap-4">
|
|
<v-btn :href="mobileVersionPath">{{$t('Switch to Mobile Version') }}</v-btn>
|
|
<v-btn color="secondary" variant="tonal" @click="showState = false">{{ $t('Close') }}</v-btn>
|
|
</div>
|
|
</v-card-text>
|
|
</v-card>
|
|
</v-dialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { getMobileUrlQrCodePath } from '@/lib/qrcode.ts';
|
|
import { getMobileVersionPath } from '@/lib/version.ts';
|
|
|
|
const props = defineProps<{
|
|
show: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'update:show', value: boolean): void
|
|
}>();
|
|
|
|
const mobileUrlQrCodePath = getMobileUrlQrCodePath();
|
|
const mobileVersionPath = getMobileVersionPath();
|
|
|
|
const showState = computed<boolean>({
|
|
get: () => {
|
|
return props.show;
|
|
},
|
|
set: value => {
|
|
emit('update:show', value);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
.img-url-qrcode {
|
|
width: 320px;
|
|
height: 320px
|
|
}
|
|
</style>
|