useClipboard

Reactive Clipboard API. Provides the ability to respond to clipboard commands (cut, copy, and paste) as well as to asynchronously read from and write to the system clipboard. Access to the contents of the clipboard is gated behind the Permissions API. Without user permission, reading or altering the clipboard contents is not permitted.

Clipboard.vue
<script setup>
  const source = ref('Hello')
  const { text, copy, copied, isSupported } = useClipboard({ source })
</script>

<template>
  <div v-if="isSupported">
    <input v-model="source" type="text" />
    <p >
      Current copied:
      <code>
        {{ text || 'none' }}
      </code>
    </p>
    <button @click="copy(source)">
      <span v-if="!copied">Copy</span>
      <span v-else>Copied!</span>
    </button>
  </div>
  <p v-else>
    Your browser does not support Clipboard API
  </p>
</template>

Your browser does not support Clipboard API