点击复制功能

2021-04-28  本文已影响0人  吴小冷
// 复制
    copyurl(code) {
      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);
      this.$message.success("复制成功");
    },
上一篇下一篇

猜你喜欢

热点阅读