methods: { async copyURL(mytext) { try { await navigator.clipboard.writeText(mytext); alert('Copied'); } catch($e) { alert('Cannot copy'); } } }