Mouseover or hover vue.js

前端 未结 13 1703
温柔的废话
温柔的废话 2021-01-30 02:13

I would like to show a div when hovering over an element in vue.js. But I can\'t seem to get it working.

It looks like there is no event for hover or mouseover in vue.j

13条回答
  •  滥情空心
    2021-01-30 02:41

    With mouseover and mouseleave events you can define a toggle function that implements this logic and react on the value in the rendering.

    Check this example:

    var vm = new Vue({
    	el: '#app',
    	data: {btn: 'primary'}
    });
    
    
    
    
    

提交回复
热议问题