Todo App in Vue.js - The Hard Way (Ep17)

Поділитися
Вставка
  • Опубліковано 30 лис 2018
  • Episode 17: Building a todo app front-end.
    Reading the Vue.js documentation, page by page.
    ⭐️ Support the channel on Patreon:
    / christopherokhravi
    ► Playlist:
    • Vue.js - The Hard Way

КОМЕНТАРІ • 15

  • @mahmudurrahman9052
    @mahmudurrahman9052 4 роки тому

    Must say this video has quite inspired to me to dive into Vue more. thanks a lot man ! great stuff.

  • @codewithfrenchy
    @codewithfrenchy 5 років тому

    love this series!

  • @ChristopherOkhravi
    @ChristopherOkhravi  5 років тому +2

    Larger font size?

  • @psybitcoin
    @psybitcoin 5 років тому +1

    Loved it!

    • @ChristopherOkhravi
      @ChristopherOkhravi  5 років тому

      Glad to hear! Thanks for watching :) and thank you for the comment :)

  • @cadfoot568
    @cadfoot568 5 років тому

    I’m in love with the shape of Vue lol

  • @Gonza2432
    @Gonza2432 5 років тому

    thanks genius!!

  • @yashjain6945
    @yashjain6945 5 років тому +1

    Which code editor do you use??

    • @ChristopherOkhravi
      @ChristopherOkhravi  5 років тому +1

      Vim in iTerm. I would warmly recommend Vim Adventures if you want to learn vim. That’s what I used 😊 Thanks for watching and thanks for the question!

    • @ChristopherOkhravi
      @ChristopherOkhravi  5 років тому

      vim-adventures.com/

  • @skillfulactor09
    @skillfulactor09 5 років тому

    are you liking vue js so far

    • @ChristopherOkhravi
      @ChristopherOkhravi  5 років тому +2

      I find the simplicity of it really compelling. It seems to me that it's a very suitable "first" framework to build many apps in to get it out the door as quickly as possible. Whether you will have to move to something else further down the line as you grow is the question though. Two main things worry me: (1) I'm afraid that as the app grows this embracing of mutation will come back and bite us. (2) Templates/components don't trivially compose as well as functions do. The second argument is quite well explained by FunFunFunction ua-cam.com/video/EmGfdlixQHo/v-deo.html (around 24:38). But again, for prototyping or getting up and running as fast as possible, Vue seems like a great option. But I'll have to see how my opinion develops further down this series :) Thank you for the question and for following the series! :) :)

  • @zeocamo
    @zeocamo 5 років тому +1

    i feel bad when i see you use != or == in Javascript, that is for other language and is a bad feature of javascript that should not be used, use !== or === instand, and so if(thing) if you want to make should you got a truthy value, and also use ===/!== on null and undefined, there is to many cases where != or == can mess you up, if you are new or do not understand JS, and i know a lot of peoples say you can use != null to check for both null and undefined in the same time, but i think we should all write code there is easy to read and understand for all on the team, also for the poor guy who get your "100K line code base after you stop" task