2020-11-17 15:41:43 +08:00
|
|
|
Vue.component("copy-to-clipboard", {
|
|
|
|
|
props: ["v-target"],
|
|
|
|
|
created: function () {
|
2020-11-21 15:53:04 +08:00
|
|
|
if (typeof ClipboardJS == "undefined") {
|
|
|
|
|
let jsFile = document.createElement("script")
|
|
|
|
|
jsFile.setAttribute("src", "/js/clipboard.min.js")
|
|
|
|
|
document.head.appendChild(jsFile)
|
|
|
|
|
}
|
2020-11-17 15:41:43 +08:00
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
copy: function () {
|
|
|
|
|
new ClipboardJS('[data-clipboard-target]');
|
2021-08-15 15:42:05 +08:00
|
|
|
teaweb.successToast("已复制到剪切板")
|
2020-11-17 15:41:43 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
template: `<a href="" title="拷贝到剪切板" :data-clipboard-target="'#' + vTarget" @click.prevent="copy"><i class="ui icon copy small"></i></em></a>`
|
|
|
|
|
})
|