wxc-steps

MinUI 小程序组件 - 步骤条

Install

  1. $ min install @minui/wxc-steps

Demos

steps示例

设置步骤信息数组和当前执行位置

步骤条 steps - 图1

  1. <template>
  2. <wxc-steps steps="{{steps}}" current="{{current}}"></wxc-steps>
  3. </template>
  4. <script>
  5. export default {
  6. config: {
  7. usingComponents: {
  8. 'wxc-steps': '@minui/wxc-steps'
  9. }
  10. },
  11. data: {
  12. steps: [{
  13. title: '步骤1',
  14. desc: '注册,登录'
  15. }, {
  16. title: '步骤2',
  17. desc: '进入详情页,点击立即购买'
  18. }, {
  19. title: '步骤3',
  20. desc: '支付成功'
  21. }],
  22. current: 1
  23. },
  24. methods: {}
  25. }
  26. </script>
  27. <style>
  28. </style>

API

Steps【props】

名称描述
steps[说明]:步骤信息数组。组成对象参见steps数组项。[类型]:Array默认值:[]
current[说明]:当前进行的步骤位置,从0开始。[类型]:Number[默认值]:0

steps 数组项

名称描述
title[说明]:步骤名称。[类型]:String默认值:""
desc[说明]:步骤描述。[类型]:String[默认值]:""
地址
steps 组件文档 https://meili.github.io/min/docs/minui/index.html#steps
steps 组件源码 https://github.com/meili/minui/tree/master/packages/wxc-steps
MinUI 组件库 https://github.com/meili/minui

Preview

steps

ChangeLog

v1.0.3(2018.01.04)

  • 步骤描述样式修改

v1.0.2(2017.11.02)

  • update .npmignore

v1.0.1(2017.10.24)

  • 初始版本