主题
一键复制文本的按钮组件。
<template> <CopyButton :text="copyText" /> </template> <script setup lang="ts"> const copyText = ref('要复制的文本') </script>
string