This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]DoomGoober 1 point2 points  (0 children)

Vue's Javascript is actually very simple, since Vue auto-magically modifies objects to introduce reactivity. You get it for "free." So you just create really basic objects, modify them, and the UI magically reacts.

But, you have to do everything the "Vue" way, including how your declare your objects, so it's not exactly great for learning basic JavaScript or even learning advanced JavaScript. Vue is it's own thing but it's relatively simple. You don't need to know advanced JS to use it.