@tuoyuan/web-plus
Version:
基于arco-design-vue的配置化表格表单组件
17 lines (16 loc) • 472 B
TypeScript
import { App } from 'vue';
interface CopyHTMLElement extends HTMLElement {
__copyHandler__?: EventListener;
__copyValue__?: string;
}
interface CopyDirectiveConfig {
value: string;
success?: () => void;
error?: (error: Error) => void;
showTip?: boolean;
}
declare const _default: {
install(app: App): void;
directive: import("vue").ObjectDirective<CopyHTMLElement, string | CopyDirectiveConfig, string, string>;
};
export default _default;