@blueking/ediatable
Version:
蓝鲸 Ediatable
14 lines (13 loc) • 395 B
TypeScript
import type { DirectiveBinding } from 'vue';
/**
* 判断元素是否溢出容器
* @param {*} el
* @returns
*/
export declare function checkOverflow(el: Element): boolean;
declare const overflowTips: {
mounted(el: Element, binding: DirectiveBinding): void;
updated(el: Element, binding: DirectiveBinding): void;
beforeUnmount(el: Element): void;
};
export default overflowTips;