@morlz/composition-api
Version:
Provide logic composition capabilities for Vue.
10 lines (9 loc) • 596 B
TypeScript
export declare const onBeforeMount: (callback: Function) => void;
export declare const onMounted: (callback: Function) => void;
export declare const onBeforeUpdate: (callback: Function) => void;
export declare const onUpdated: (callback: Function) => void;
export declare const onBeforeUnmount: (callback: Function) => void;
export declare const onUnmounted: (callback: Function) => void;
export declare const onErrorCaptured: (callback: Function) => void;
export declare const onActivated: (callback: Function) => void;
export declare const onDeactivated: (callback: Function) => void;