鼠标事件 | mouseover mouseout / mouseenter mouseleave
父级元素添加鼠标事件 子元素绑定点击事件
<div @mouseenter="actioveCollection = index" @mouseleave ="actioveCollection = false"> <i class="el-icon-star-off" v-if="!isCollection && actioveCollection === index" @click="addFastInstruction(item)"></i> </div>
鼠标事件会影响子元素的点击事件
so~
调用子元素方法时阻止冒泡即可 (event.stopPropagation();)
addFastInstruction(fastInstruction) { event.stopPropagation(); // ... // 要执行的动作 },
但是!
mouseover mouseout使用阻止冒泡后不生效
mouseenter mouseleave可以