mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
14 lines
469 B
JavaScript
14 lines
469 B
JavaScript
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,
|
|
})
|