From 5facbd7080b42510e494ad794292ab8bfac48ba0 Mon Sep 17 00:00:00 2001 From: Yuriy Martini Date: Thu, 25 Jun 2020 18:31:15 +0200 Subject: [PATCH] fix WhatsApp --- src/components/WhatsAppButton.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WhatsAppButton.vue b/src/components/WhatsAppButton.vue index b5e5582..4c64517 100644 --- a/src/components/WhatsAppButton.vue +++ b/src/components/WhatsAppButton.vue @@ -31,7 +31,7 @@ export default { methods: { openShareWindow() { eventEmit(this, "onShare", { name: "WhatsApp" }); - const url = `https://wa.me/?text=${encodeURIComponent( + const url = `https://api.whatsapp.com/send?text=${encodeURIComponent( this.$props.shareUrl )}`;