37 lines
741 B
JavaScript
37 lines
741 B
JavaScript
|
import Clipboard from 'clipboard'
|
||
|
import Vue from 'vue'
|
||
|
|
||
|
function clipboardSuccess() {
|
||
|
Vue.prototype.$message({
|
||
|
message: '复制成功',
|
||
|
type: 'success',
|
||
|
duration: 1500
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function clipboardError() {
|
||
|
Vue.prototype.$message({
|
||
|
message: '复制失败',
|
||
|
type: 'error'
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export default function handleClipboard(text, event) {
|
||
|
const clipboard = new Clipboard(event.target, {
|
||
|
text: () => text
|
||
|
})
|
||
|
clipboard.on('success', () => {
|
||
|
clipboardSuccess()
|
||
|
clipboard.off('error')
|
||
|
clipboard.off('success')
|
||
|
clipboard.destroy()
|
||
|
})
|
||
|
clipboard.on('error', () => {
|
||
|
clipboardError()
|
||
|
clipboard.off('error')
|
||
|
clipboard.off('success')
|
||
|
clipboard.destroy()
|
||
|
})
|
||
|
clipboard.onClick(event)
|
||
|
}
|