<button @click="copyUrl">复制url</button>   

  

//js
    copyUrl() {
      const input = document.createElement('input')
      document.body.appendChild(input)
      input.setAttribute('value',"这里可以写变量或者要复制的字符串内容")
      input.select()
      if (document.execCommand('copy')) {
        document.execCommand('copy')
      }
      document.body.removeChild(input)

  

转载于:https://www.cnblogs.com/z-y-zone/p/10868062.html

Logo

前往低代码交流专区

更多推荐