Files
tydata-webview-v2/src/components/QrcodePop.vue

15 lines
406 B
Vue
Raw Normal View History

2025-09-27 17:41:14 +08:00
<template>
<van-popup v-model:show="show" closeable round :style="{ padding: '18px' }">
<img src="@/assets/images/qrcode_qnc.jpg" alt="qrcode" />
<div class="text-center font-bold text-2xl">
更多服务请关注天远数据公众号
</div>
</van-popup>
</template>
<script setup>
const show = defineModel("show");
</script>
<style lang="scss" scoped></style>