I mean there is nothing wrong with using JQuery. I just personally like VueJS because it is easy to use / learn and it has binded data to the HTML page. So in VueJS for example say you have a variable called “Hello” and that is equal to “World!” and you want to display that string on the HTML page.
You would do
span>{{ Hello }}span> (I can’t do the whole bracket or it disappears…
and it would display “World” on the screen in that span.
Now say you tell the code to change that variable Hello to equal “Hello World” instead of “World” instead of having to manually set the span element in the code VueJS binded data will update the page automatically just by doing this.Hello = “Hello World!”
https://github.com/xander1998/xrplife
Both of those resources use VueJS / Axios if you are interested in seeing exactly what I am talking about above.
1 Like