vue.js實作移入移出效果的方法:【methods:{enter(index){this.seen = true;this.current = index;},leave(){this.seen = false;this .cur...】。
本文操作環境:windows10系統、vue 2.5.2、thinkpad t480電腦。
vue.js實作移入移出事件的具體程式碼:
html程式碼:
<i class="icon" @mouseenter="enter(index)" @mouseleave="leave()"></i>
邏輯程式碼:
methods:{ enter(index){ this.seen = true; this.current = index; }, leave(){ this.seen = false; this.current = null; } }
推薦學習:php培訓
以上是vue.js如何實現移入移出效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!