推广小程序前端代码
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.

24 lines
380 B

2 months ago
  1. export default {
  2. props: {
  3. // 标题
  4. title: {
  5. type: [String, Number],
  6. default: ''
  7. },
  8. // 描述文本
  9. desc: {
  10. type: [String, Number],
  11. default: ''
  12. },
  13. // 图标大小
  14. iconSize: {
  15. type: [String, Number],
  16. default: 17
  17. },
  18. // 当前步骤是否处于失败状态
  19. error: {
  20. type: Boolean,
  21. default: false
  22. },
  23. ...uni.$uv?.props?.stepsItem
  24. }
  25. }