copy(value){
let url = value
let inputNode = document.createElement('input') // 创建input
inputNode.value = url // 赋值给 input 值
document.body.appendChild(inputNode) // 插入进去
inputNode.select() // 选择对象
document.execCommand('Copy') // 原生调用执行浏览器复制命令
inputNode.className = 'oInput'
inputNode.style.display = 'none' // 隐藏
this.$message.success('复制成功')
}
01-23
504
05-09
1451
01-17
564
06-08
1204