import type { Component } from 'vue'; /** * 图标 */ export type CopyableIcon = string | Component; /** * 国际化 */ export interface CopyableLocale { copy: string; copied: string; }