vue复制内容到粘贴板
时间: 2024-06-14 22:07:07 浏览: 145
vue 复制到粘贴板组件 vue-clipboard2.doc
以下是两种在Vue中实现复制内容到剪贴板的方案:
方案一:使用clipboard库
```vue
<template>
<div>
<button @click="copyText">复制文本</button>
</div>
</template>
<script>
import clipboard from 'clipboard';
export default {
methods: {
copyText() {
let text = 'Hello World';
clipboard.writeText(text); alert('已复制到剪贴板!');
}
}
}
</script>
```
方案二:使用v-copy指令
```vue
<template>
<div>
<button v-copy="text">复制文本</button>
</div>
</template>
<script>
export default {
data() {
return {
text: 'Hello World'
}
}
}
</script>
```
阅读全文