<template>
<div>
<button @click="copyText">复制文本</button>
</div>
</template>
<script>
export default {
methods: {
copyText() {
const text = 'Hello World';//要复制的文字
const textarea = document.createElement('textarea');
textarea.value = text;
document.body.appendChild(textarea);
textarea.select();
document.execCommand('Copy');
document.body.removeChild(textarea);
alert('已复制到剪贴板!');
}
}
}
</script>
10-13
3246

07-29
803

11-09
1033

05-17
402

12-15
7078

10-28
755
