This is the best Vue tutorial on YT I've seen so far! Your tutorials are very easy to follow, you don't speak too fast or too slow and you show each step very clearly. Also because it's made into multiple short videos I don't feel discouraged to keep going, I feel very encouraged instead. Keep it up, ninja Shaun!
I've been looking for a proper Vue js course for quite sometime now, and you are the best explanator in the youtube community. I will recommend this channel to my groups in facebook.
I bought the wrong Vuejs course on Udemy... I love the way you explain everything Shaun clear and straight to the point. Lesson learnt for next time i guess
Hello buddy. Thank you for these tutorials. I have made the change from welding into development. i have landed my first job at Regatta and we are learning Vue. Richard speaks very highly of you.
Very nice work. Thank you. This is the best Vue.js tutorial i have ever seen. English is not my native language but even that doesn`t do your videos hardly to understand.
my OffsetX, OffsetY are always (0,0) do u know why ? edit : they are (0,0) when I look in the console but I have the good value printed on the canvas (x and y)
Great tutorial. Even for non native speakers. But how would you insert the a-link without a wrapping p (i.e. as a child of your existing div (but in the same place))?
Question: if I use click="add()" instead of click="add" it will work, but if I use mouseover="updateXY()" instead of mouseover="update" it will throw an error.
The this.age++; work fine, but when we use the this.age += inc; there is a bug if you first click add it will just put the number 1 after 25. How do we fix this ?
I have a little confusion. How did we access the co-ordinates? Is it because of inbuilt event "mousemove" or the 'event' parameter we set? Anyone can help.
hi net ninja i m facing an issue if i first cliclk subtract button then application works fine bt if i first click add button it doesnot work properly e.g age =26 if i click add button it will show like this 261 or 2610 for 10 year plz help
It's confusing for me how to tell the difference between `v-on:click="add"` and `v-on:click="add(1)"`, since the former is not even a function call in JavaScript. But finally I realize that when calling by "add", you actually calling `add(mouse_event)`, which you get a parameter behind the scene. So to me, `add()` is more clear.
An example: when calling "add": the `inc` will be `object MouseEvent`, while add(1) `inc` is `1`, and you can still access `event` inside the function `add(inc)`.
good tutorial, could you create a video on the type of stuff we can do with vue, for example going through all the v:on methods , so one day when we face an issue , we can go like oh , i remember there's a function i saw on the video~
Here's a reference to all available events (including mouse events): developer.mozilla.org/en-US/docs/Web/Events Click link, hit cmd/ctrl+f, then type "mouse events" to get straight to the mouse events. Are all these available via vue.js? I'm guessing yes, but I'm too new to know.
i have a problem with css , div id="canvas". it does not style it to what I say - I can change in chrome the style and it's visible. but canvas container is invisible.why?