showing results for - "vue copy image to clipboard"
Leah
18 Jul 2016
1// Copies the image as a blob to the clipboard (PNG only)
2navigator.clipboard.write([
3  new window.ClipboardItem({
4    [blob.type]: blob,
5  }),
6])