鼠标事件进行监听
需求中,在一个table(组件)表中,对于其中一列(该列为图片列),当鼠标划过该列的某个单元格子(图片)时,需要展示出该单元格子对应的遮罩层
翻阅了一些博客,发现好多都提到了mouse事件,如mouSEOver、mouSEOut、mouseenter、mouseleave,在之后我自己也通过这种方法进行了尝试。
...
changeMask(index) {
let vm = this;
let mask = vm.$refs['mask' + index];
if(mask.style.display == 'none') {
mask.style.display = 'block';
}else {
mask.style.display = 'none';
}
}