DEV Community

Discussion on: Vue 3: Options API vs Composition API

Collapse
 
bkilinc profile image
bkilinc

My opinion is that; final components should be in options API. It is simple and it is easy to share code with new comers (and designers). Shared states and methods should be placed in setup function. In other words; instead of 'mixins' and 'extends', setup function should be used. This way, you get the best of both worlds. This is my opinion. I chose vue for its simplicity.