创建一个按钮, 添加点击事件COPYURL
<el-button @click="copyUrl('我是复制的信息')">复制</el-button>
JS代码部分
copyUrl(val) {
const input = document.createElement("input");
document.body.appendChild(input);
input.setAttribute("value", val);
input.select();
if (document.execCommand("copy")) {
document.execCommand("copy");
}
document.body.removeChild(input);
}