欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

复制文本到剪切板

程序员文章站 2022-05-15 22:54:27
...

实现方式一、
1、新建一个copy.js文件

const copy = {
  executeCopy(textValue) {
    const input = document.createElement('textarea')
    document.body.appendChild(input)
    input.value = textValue
    input.select()
    document.execCommand('Copy')
    input.remove()
  }
}
export default copy

2、在文件中引入

import copy from './components/copy'

3、点击复制按钮的时候

// 复制路径
    copyPathAction() {
      copy.executeCopy(this.editNode.fullName)
    },

实现方式2:
借助第三方插件:
https://www.cnblogs.com/similar/p/10757540.html