需求
需要做类似物流查询的功能,需要在每一个步骤上添加click或者hover事件,然后在步骤旁边弹出一个小框
需求图大概如下
代码
<div class="stepsDemo1" v-show="isShow">
<el-steps :space="spaceWidth" :active="idx" :finish-status="status">
<el-step
v-for="(stepData,index) in stepDatas"
:description="stepData.description"
:icon="stepData.icon"
:title="stepData.title"
:key="index"
></el-step>
</el-steps>
<el-button @click="nextStep">下一步</el-button>
<el-button type="warning" @click="viewStep">查看状态</el-button>
</div>
还请大佬们多多指教
添加click 和css :hover不就好了
https://jsfiddle.net/1m6kkqgg/