Posts by Dallington Augusto • 25 points
2 posts
-
0
votes1
answer38
viewsQ: Add Class to elements other than this Hover
I have a list of links, and I need to add the class "fade" in all elements that are not in Hover. new Vue({ el: "#app", data: { active: false }, methods: { mouseOver: function () {…
vue.jsasked Dallington Augusto 25 -
2
votes4
answers990
viewsQ: Input mask
I’m having trouble creating a mask for registration input. Registrations are 4 or 5 digits, hyphen , 1 digit. (0000? -0). The mask should be applied according to the typing of the input. But I…