<template> <canvas ref="qrcode"></canvas> </template> <script> import QRCode from 'qrcode' export default { props: { url: { type: String, default() { return '' }, }, }, mounted() { this.creatQrCode() }, methods: { creatQrCode() { if (this.url) { QRCode.toCanvas(this.$refs.qrcode, this.url, { 154, height: 154, }) } }, }, } </script>