element-plus
Version:
A Component Library for Vue 3
38 lines (35 loc) • 928 B
JavaScript
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
const popperTriggerProps = buildProps({
/** @description Indicates the reference element to which the popper is attached */
virtualRef: {
type: definePropType(Object)
},
/** @description Indicates whether virtual triggering is enabled */
virtualTriggering: Boolean,
onMouseenter: {
type: definePropType(Function)
},
onMouseleave: {
type: definePropType(Function)
},
onClick: {
type: definePropType(Function)
},
onKeydown: {
type: definePropType(Function)
},
onFocus: {
type: definePropType(Function)
},
onBlur: {
type: definePropType(Function)
},
onContextmenu: {
type: definePropType(Function)
},
id: String,
open: Boolean
});
const usePopperTriggerProps = popperTriggerProps;
export { popperTriggerProps, usePopperTriggerProps };
//# sourceMappingURL=trigger.mjs.map