¶Ô±ÈÐÂÎļþ |
| | |
| | | export default { |
| | | props: { |
| | | // æåæ¹å |
| | | direction: { |
| | | type: String, |
| | | default: uni.$u.props.steps.direction |
| | | }, |
| | | // 设置第å 个æ¥éª¤ |
| | | current: { |
| | | type: [String, Number], |
| | | default: uni.$u.props.steps.current |
| | | }, |
| | | // æ¿æ´»ç¶æé¢è² |
| | | activeColor: { |
| | | type: String, |
| | | default: uni.$u.props.steps.activeColor |
| | | }, |
| | | // æªæ¿æ´»ç¶æé¢è² |
| | | inactiveColor: { |
| | | type: String, |
| | | default: uni.$u.props.steps.inactiveColor |
| | | }, |
| | | // æ¿æ´»ç¶æç徿 |
| | | activeIcon: { |
| | | type: String, |
| | | default: uni.$u.props.steps.activeIcon |
| | | }, |
| | | // æªæ¿æ´»ç¶æå¾æ |
| | | inactiveIcon: { |
| | | type: String, |
| | | default: uni.$u.props.steps.inactiveIcon |
| | | }, |
| | | // æ¯å¦æ¾ç¤ºç¹ç±»å |
| | | dot: { |
| | | type: Boolean, |
| | | default: uni.$u.props.steps.dot |
| | | } |
| | | } |
| | | } |