qrCode.vue 273 B

123456789101112131415
  1. <template>
  2. <div>
  3. <v-img
  4. :width="350"
  5. cover
  6. aspect-ratio="16/9"
  7. src="https://minio.citupro.com/dev/static/csqrcode.jpg"
  8. style="height: 300px;"
  9. ></v-img>
  10. </div>
  11. </template>
  12. <script setup>
  13. defineOptions({ name: 'qr-code' })
  14. </script>