Looking for guidance on implementing this in VueJS
You can find a starting point here
I think it involves index matching, similar to how I did it with jQuery like this:
$('.Colors > li').on('mouseenter', function() {
var i = $(this).index();
$('.Items > li.active').fadeOut(200, function() {
$(this).removeClass('active').parent('ul').children('li').eq(i).fadeIn(100).addClass('active');
});
});
But now I need help translating it into VueJS.
Appreciate any assistance. Thanks!