// 复制
copyurl(code) {
const input = document.createElement("input");
document.body.appendChild(input);
input.setAttribute("value", "复制内容");
input.select();
if (document.execCommand("copy")) {
document.execCommand("copy");
}
document.body.removeChild(input);
this.$message.success("复制成功");
},
网友评论