UNPKG

element-plus

Version:
38 lines (37 loc) 830 B
export declare const useTransitionFallthroughEmits: string[]; /** * NOTE: * This is only a delegator for delegating transition callbacks. * Use this at your need. */ /** * Simple usage * * In your setups: * * setup() { * const fallthroughMethods = useTransitionFallthrough() * return fallthrough * } * * In your template: * * <template> * <transition name="whatever" v-bind="fallthrough"> * <slot /> * </transition> * </template> * */ export declare const useTransitionFallthrough: () => { onAfterAppear: () => void; onAfterEnter: () => void; onAfterLeave: () => void; onAppearCancelled: () => void; onBeforeEnter: () => void; onBeforeLeave: () => void; onEnter: () => void; onEnterCancelled: () => void; onLeave: () => void; onLeaveCancelled: () => void; };