Skip to content

how can i use Route without getting any errors like this

Guys i’m trying to work on my navigation bar and use route but it always shows errors I don’t know the reason but it isn’t convinced with the routes at all and the error is below is my app.jsx code and my navigation is this code as well though i was working navlink and yet it didn’t wo…

Performance metrics for Vuejs

I’m looking for performance metrics for a Vue app. Metrics regarding the whole app but also for some specific components. I know that I can use Vue.config.performance = true; and then run the performance dev tools and maybe I could use something like Performance Observer in order to do specific things o…

Replace Textarea Input With JQuery

I am attempting to automatically replace input from a HTML textarea for specific phrases (for example “a” with “asdf”). My code below works for HTML input boxes, but does not work for textarea. Is there a way to fix it for textarea? HTML: JS: Answer