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
Here is a working example of what I think you are asking for.
http://jsfiddle.net/1cekfnqw/3017/
Show Hover over me! var demo = new Vue({ el: '#demo', data: { active: false }, methods: { mouseOver: function(){ this.active = !this.active; } } });