需求,点击页面中的某一个按钮,复制文字。
npm install clipboard --save
在组件中使用
import Clipboard from 'clipboard'
html中的按钮
<div ref="main" class="main"><button @click="copy">copy</button>
</div>
js的代码
.main容器,可以是任何页面上的容器
copy(code) {let clipboard = new Clipboard(".main", {text() {// console.log(trigger);//返回字符串return code;},});// 复制成功clipboard.on("success", () => {this.Message('You have successfully copied the code. Please paste in game to redeem.')clipboard.destroy();});},