copyTextToClipboard.ts 348 B

123456789101112
  1. import { message } from 'ant-design-vue';
  2. export function copyText(text: string, prompt: string | null = '已成功复制到剪切板!') {
  3. navigator.clipboard.writeText(text).then(
  4. function () {
  5. prompt && message.success(prompt);
  6. },
  7. function (error: Error) {
  8. message.error('复制失败!' + error.message);
  9. },
  10. );
  11. }