export default { props: [ 'name', 'href', 'token' ], data() { return {showCopied: false} }, template: `
copied!
{{name}} 🗐
`, methods: { fetchAndCopy() { event.preventDefault() fetch(this.href, { method: 'GET', headers: { 'Authorization': 'Bearer ' + this.token }, }).then((resp) => resp.headers.get("content-type") == "application/json" ? resp.json() : resp.text()) .then((value) => { window.navigator.clipboard.writeText(value) this.showCopied = true setTimeout(() => { this.showCopied = false }, 1000) }) .catch((e) => { console.log("failed to get value:", e); alert('failed to get value') }) }, }, }