首页 > 技术文章 > Vue composition API 实现一键复制

Leophen 2020-11-03 21:16 原文

composition API 中实现一键复制

<input
  type="text"
  ...
  onfocus="this.select()"
  ref="inputLink"
>
...
const inputLink = ref({} as unknown);
...
const copyLink = () => {
  (inputLink.value as HTMLInputElement).select();
  document.execCommand("copy");
  alert("复制成功");
}

主要用到 DOM.select(); 和 document.execCommand("copy");

推荐阅读