P

Vue 3 FTW!

After reading the Composition API RFC for the next major release of Vue, it's great to see this framework evolving and becoming a more mature solution for your frontend.

As a current fan of Vue, here are some key features i'm excited about!

Tree Shaking

With the new API, instead of working with all of Vue core, you can just import what you need and allow Webpack to remove any unused API's, resulting in a smaller / more efficient footprint.

Typescript Support

The assurance that types bring, allow for code safety and correctness ...well that's just great!

Code Organization

The single setup() function combined with Composition Functions allow you to not have to write your component code around options (eg. data, methods, computed), but be organized by logical concerns which comes with a major readability improvement as you traverse a codebase.