diff --git a/src/pm-qrcode.vue b/src/pm-qrcode.vue index 150ebba..a85a9da 100644 --- a/src/pm-qrcode.vue +++ b/src/pm-qrcode.vue @@ -123,7 +123,7 @@ export default { this.textToQR = `tel:${this.value || 0}`; break; case "sms": - this.textToQR = `sms:${this.value.number || 0}${ + this.textToQR = `SMSTO:${this.value.number || 0}${ this.value.message ? ":" + this.value.message : "" }`; break;