This commit is contained in:
zhu
2026-05-08 13:56:09 +08:00
parent c3d550513c
commit d1285b7800
28 changed files with 1591 additions and 8 deletions

6
src/utils/helper.ts Normal file
View File

@@ -0,0 +1,6 @@
/**
* 一键复制文本
*/
export async function copyText(text: string) {
await navigator.clipboard.writeText(text);
}