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

Поделиться
HTML-код
  • Опубликовано: 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 ruclips.net/video/EmGfdlixQHo/видео.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