vue中点击按钮复制内容
<button @click="copyUrl">复制url</button>
//js
copyUrl() {
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)
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。
更多精彩

