ivue-material-plus
Version:
A high quality UI components Library with Vue.js
19 lines (18 loc) • 467 B
TypeScript
declare function beforeMount(el: any, { value }: {
value: any;
}): boolean;
/**
* 所在组件的 VNode 更新时调用
*
* el: HTMLElement, binding: VNodeDirective
*/
declare function updated(el: Record<string, any>, { value }: {
value: any;
}): boolean;
declare function unmounted(el: any): boolean;
declare const _default: {
beforeMount: typeof beforeMount;
unmounted: typeof unmounted;
updated: typeof updated;
};
export default _default;