64

!rant

Vue.js, where have you been all my life? I think I love you.

Comments
  • 9
    Using it for data binding in a work project at the moment as an upgrade to Knockout. Managed to get rid of jQuery as a result 👍
  • 2
    @bluesdriven

    Doing something similar revitalizing an older ASP.Net MVC app. Very easy to get working.
  • 6
    @lukegv Vue is inspired by Angular and React and is very much the balance between the two. However it uses existing tech rather than something proprietary and as a result is easy to learn and doesn't depend on anything.
  • 2
    @nblackburn are there any drawbacks?
  • 2
    @slaat Not really, most were addressed in v2
  • 2
    How we code one component in Vue is really fun, easy and nice to read. The template tag using jade or plain html, setting the default style scss down bottom, dispatching events easy and infor all others folks components, or using Vuex to control states and dispatch actions to mutate it. Last one is the easy way to create a mock component with mock data and tdd bdd your new son.
  • 1
    Yeah I've looked into it and I really like it!
  • 0
    Great to see all the Vue love here! By far my favorite view library of late, for all the reasons listed here and more.
  • 2
    Someone compiled the docs into a handy Android app. Look up 'Vue.js' in the Play Store.
  • 1
    @nblackburn does it contains routing features out of the box (like react router)?
  • 2
    @ocalderon Yup, there is a package called vue-router.
  • 2
    @ocalderon You will find with Vue that nothing is included that isn't essential to the core but most likely is available as a 1st/3rd party package.
Add Comment