Posts by thau0x01 • 158 points
3 posts
-
3
votes1
answer529
viewsA: View password with hash in database, decoded
Man, it’s not possible to undo a has once it’s been generated. This is the way digest algorithms work, it encodes the message without using a decryption key, so you won’t be able to see the password…
-
0
votes3
answers644
viewsA: How to add a css class to an element according to the page accessed in Vue.js
This technique works when we make the static menu. In my case, I generated a dynamic menu, according to the routes I have in my file rotas.js he’s responsible for declaring routes in my system, so I…
-
1
votes3
answers644
viewsQ: How to add a css class to an element according to the page accessed in Vue.js
Good morning Gentlemen. I’m having a little difficulty with Vue.js, I want to understand how to put the class "active" in an element li according to the current active route. I have a menu that is…