Skip to content

IKVerticalStepBar 垂直步骤条

ikVer_step.png

Props

参数说明类型可选值默认值
active当前激活的下标String-''
list数据数组Array-[]
needClick是否存在点击事件Boolean-false
propsField映射字段Object-{ name: "name", children: "children", }

事件

名称说明类型
click点击时触发(row: any) => void

示例代码

vue
  <template>
    <!-- 示例 -->
    <IKVerticalStepBar
      v-model:active="active"
      :list="menuList"
      :needClick="true"
    ></IKVerticalStepBar>
  </template>