While working on a Vue application, I'm curious to know if it's possible to access the source of pasted text. For example, whether the pasted text originated from your own application, Word, or Notepad?
I attempted the code below but was unable to identify any information about the source in the event.
<textarea @paste="onPaste"></textarea>
methods: {
onPaste(event){
console.log(event)
}
}