Skip to content

Instantly share code, notes, and snippets.

@sin-tanaka
Created August 26, 2019 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sin-tanaka/32c1ae1474207bcf722da506d1f1648a to your computer and use it in GitHub Desktop.
Save sin-tanaka/32c1ae1474207bcf722da506d1f1648a to your computer and use it in GitHub Desktop.
<template>
<div>
<input id="copy-text" value="copy text" />
</div>
</template>
<script>
export default {
methods: {
copyToClipboard: function() {
const target = document.querySelector('#copy-text');
target.select();
const result = document.execCommand('copy');
console.log('copy clipboard', result);
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment