Last time (in part 1 of this series) we figured out how to add Vue to our index.html with a regular <script> tag, and we managed to add our v...
For further actions, you may consider blocking this person and/or reporting abuse
Really like it, I hope you will go through the full Vue features because if all is explained with the same quality that will be by far the best tutorial to Vue.
Hi Fred, thanks for your kind words. That's the plan, to do a weekly release and walk through every feature!
Thank you, this helped me better understand a Vue app I cobbled together from examples! Really appreciate the clear explanation and dissection.
And, more excitingly, within minutes of reading this I was able to refactor the previously mentioned app to use a click event to call the method with an API call, replacing the window.location.reload(true) full page reload. Thanks again ⚡️👍🏼
Awesome Dana!!! Next week ill go into conditional rendering so stay tuned :)
Thank you so much for this acticle. Would be nice if you create tutorial that show how to use Django Rest Framework with Vue.js. I mean registration with confirmation an email, login, change a pass, login with Facebook, Google etc...
Thank you very much for taking the effort to teach. These tutorials are amazing compared to video lectures. Learning from text tutorials is helping a lot. I hope you will take us to the core of Vue with the same(or >=) passion.
another great work.. waiting for more..👏👏👏
Thanks Jonathan! Comments like these keep me motivated :)
Great also waiting for more. Thx
Thanks!
Explanation on point, helped me understanding the basics better.
Thanks for your feedback :)
Wow awesome article, makes me wanna do something with Vue again 😊
Do eeeeet! :D
I like the articles on Vue that you have posted. Great tutorials parts. I am learning Vue and doing POC'S on it.
If possible can you post any articles on Vuex and Vue-Router with Vue.
Hey Surya, thanks for you words :) Keep posted on my twitter account @marinamosti , I post new articles there and will have a Vuex series up soon I hope!
Thank you :)
Nice follow up on the first tutorial. I like the explanations of what Vue is doing behind the scenes.
Thanks for the tutorial! Very well done!
Thanks Nicolas, glad you enjoyed it :)
Keep up Marina. well, this is really easy
Wow awesome article keep it continue
Thanks!
Is it possible in Vue.js to put event handling code just in one place(in js file), like we do in jquery.
$("#btnSubmit").click(function(e){
alert("example");
});
Hi Aniketnaik, well... In Vue as you probably know by now, we declare the listeners directly on the template using @click or @event and pass in the name of a method. It is possible to attach listeners using vanilla javascript by doing element.addEventListener and passing a function, but it depends on what you're trying to accomplish. Good luck