Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Tom Ruys - Javascript: ReactJS and VueJS

Avatar for Tom Ruys Tom Ruys
November 17, 2019

Tom Ruys - Javascript: ReactJS and VueJS

An example of choosing and applying ReactJS to a Startup Application, with a quick comparison to VueJS.

Avatar for Tom Ruys

Tom Ruys

November 17, 2019

Other Decks in Technology

Transcript

  1. Syntax “All” in HTML! Easy Start Super Light Fast Lighter

    Quick Start Simple Plug & Play Philips
  2. Philips Simple? <ul> {this.props.profiles.collection.map((profile, index) => ( <Profile key={index} profile={profile}

    /> ))} </ul> <ul> <Profile v-for="profile in profiles.collection” :profile=“profile” /> </ul> Simple!
  3. Philips Plug & Play var vueApp = new Vue( {

    el: '#vueApp', data: { profiles: { ... } } methods: { ... } });
  4. Tom Ruys React vs Vue (Slightly Smaller) Projects Plug &

    Play Easy and Simple Super Light (Slightly Larger) Projects State Management Well Documented Light
  5. Tom Ruys More Topics? React & Vue Lifecycles React Native

    React vs Vue vs Angular? Steven Straatemans React developers will love the Vue Composition API https://medium.com/frontmen/react-developers-will-love-the-vue-composition-api-91424d221419