Skip to content

CopyButton 复制按钮

一键复制文本的按钮组件。

基本用法

vue
<template>
  <CopyButton :text="copyText" />
</template>

<script setup lang="ts">
const copyText = ref('要复制的文本')
</script>

Props

参数说明类型默认值
text要复制的文本string-

基于 MIT 许可发布