How does vue realize the click-and-copy-paste function?

Click the copy button to copy the currently bound value and how to paste it?

<button
  @click="copyOdd(items.id)"
>
  
</button>

copyOdd(val) {
  // val, ?
  Toast("");
},
Apr.28,2022

  https://www.cnblogs.com/ldlx-...

Menu