You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
469 B
14 lines
469 B
import PropTypes from '../_util/vue-types'
|
|
export default () => ({
|
|
trigger: PropTypes.array.def(['hover']),
|
|
overlay: PropTypes.any,
|
|
visible: PropTypes.bool,
|
|
disabled: PropTypes.bool,
|
|
align: PropTypes.object,
|
|
getPopupContainer: PropTypes.func,
|
|
prefixCls: PropTypes.string,
|
|
transitionName: PropTypes.string,
|
|
placement: PropTypes.oneOf(['topLeft', 'topCenter', 'topRight', 'bottomLeft', 'bottomCenter', 'bottomRight']),
|
|
forceRender: PropTypes.bool,
|
|
})
|