1.导入
说明:创建vue项目安装了lodash
import throttle from "lodash/throttle";
2.使用
javascript
// 节流
changeIndex: throttle(function (index) {
this.currentIndex = index;
}, 50),
3.页面
html
<!-- 鼠标以上就有相对应的cur类名 -->
<h3 @mouseenter="changeIndex(index)" :class="{ cur: currentIndex === index }">
<a :data-categoryName="item1.categoryName" :data-category1Id="item1.categoryName">{{
item1.categoryName
}}</a>
</h3>