Skip to content

v-copy

功能介绍

复制传入的值到剪贴板

示例

将要复制的值: 你将复制这个值

使用

typescript
<script setup>
import { ref } from 'vue'

const change = ref('更改的值')
const value = ref('你将复制这个值')
</script>

<template>
  <button v-copy="value">点击我复制</button>
  <input type="text" v-model="change"/>
  <button @click="() => value = change">
    改变将要复制的值
  </button>
</template>

Released under the MIT License.