Copy table to clipboard in vue.js
11:39 19 May 2020

I am trying to copy div element to clipboard in vuejs. I have gone through to search related solution and applied. But not working. I ant to copy full table to clipboard. Thanks in advance

 
                
Name abcd
Phone 124545

Methods

 methods:{
        copyToClipboard(containerid){
            var range = document.createRange();
            range.selectNode(containerid); 
            window.getSelection().removeAllRanges();
            window.getSelection().addRange(range);
            document.execCommand("copy");
            window.getSelection().removeAllRanges();
            alert("data copied");
        }
    },
vue.js vuejs2