const _input = document.createElement('input')
_input.value = ‘http://www.baidu.com’
document.body.appendChild(_input)
_input.select()
document.execCommand('Copy')
document.body.removeChild(_input)
this.$message.warning('复制成功')