Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <template>
  2. <div>
  3. <textarea ref="textJobObjective"></textarea>
  4. </div>
  5. </template>
  6.  
  7. <script>
  8. export default {
  9. data: () => ({}),
  10. methods: {
  11. copyJobObjective() {
  12. this.$refs.textJobObjective.$el.getElementsByTagName('textarea')[0].select()
  13. document.execCommand('copy')
  14. }
  15. }
  16. }
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement