Hopefully you enjoy this little bit different of a video! Shoutout to kzbin.info/www/bejne/d2Glnn-PfbGDkNU (webDevJunkie), he did this challenge using react. Be sure to check it out if you want to see something similar in a react setting.
@vivianliu5011 Жыл бұрын
I think you missed one thing you need to clear your deletedPoints array when new point is added. and the redo and undo button should have correct disabled status.
@randel_mcafee862 жыл бұрын
Definitely going to give this a try!
@nike0822 Жыл бұрын
thanks for this video John!! It was fun & very useful, please make more such videos related to interviews. :)
@JohnKomarnicki Жыл бұрын
I appreciate that! I do have a few other videos like this using a new platform I’ve been working on www.webdevdaily.io
@anchalsoni8614 Жыл бұрын
we can add a check too to check for the conditions when there are no more points to delete or redo
@MostafaAli_97Ай бұрын
Thanks John :)
@jasonpm21310 ай бұрын
Did it by myself with a canvas and then watched your video and saw that you used a v-for. Quite dumb of me for not thinking within vue. But hey, I guess resolving the problem was the main point!
@nehuen7cuenca Жыл бұрын
Marvelous💯
@hersheymae17802 жыл бұрын
there is no vue option 6:53 :
@JohnKomarnicki2 жыл бұрын
What?
@azrul8414 ай бұрын
you need to install the vue dev tools extension
@shabnammahboubi21122 ай бұрын
Awesome
@mohamedfarouksouei35852 жыл бұрын
thank you
@galyedidovich6 ай бұрын
Pro tip: no need to make deleted points a ref 😎 17:23
@karthikm.18042 жыл бұрын
google calendar clone with vue
@sogggy Жыл бұрын
Awesome. I added a reset button to clear points Reset Points const resetPoints = () => { points.value = []; deletedPoints.value = []; };