ant-design-vue/components/steps/index.jsx

47 lines
1.1 KiB
React
Raw Normal View History

2018-03-19 10:16:27 +08:00
2018-03-09 18:52:31 +08:00
import PropTypes from '../_util/vue-types'
2018-03-11 12:48:04 +08:00
import { initDefaultProps, getOptionProps } from '../_util/props-util'
2018-03-09 18:52:31 +08:00
import VcSteps from '../vc-steps'
const getStepsProps = (defaultProps = {}) => {
const props = {
prefixCls: PropTypes.string,
iconPrefix: PropTypes.string,
current: PropTypes.number,
status: PropTypes.oneOf(['wait', 'process', 'finish', 'error']),
size: PropTypes.oneOf(['default', 'small']),
direction: PropTypes.oneOf(['horizontal', 'vertical']),
progressDot: PropTypes.oneOfType([
PropTypes.bool,
PropTypes.func,
]),
}
return initDefaultProps(props, defaultProps)
}
export default {
2018-04-08 21:17:20 +08:00
name: 'ASteps',
2018-03-09 18:52:31 +08:00
props: getStepsProps({
prefixCls: 'ant-steps',
iconPrefix: 'ant',
current: 0,
}),
2018-04-08 21:17:20 +08:00
Step: { ...VcSteps.Step, name: 'AStep' },
2018-03-09 18:52:31 +08:00
render () {
const props = getOptionProps(this)
const stepsProps = {
props,
on: this.$listeners,
2018-03-13 10:19:00 +08:00
scopedSlots: this.$scopedSlots,
2018-03-09 18:52:31 +08:00
}
return (
<VcSteps
{...stepsProps}
>
2018-03-11 12:48:04 +08:00
{this.$slots.default}
2018-03-09 18:52:31 +08:00
</VcSteps>
)
},
}
2018-03-19 10:16:27 +08:00