composition api

Migrating From vue 2 Options Api To Vue 3 Composition Api

The vue team introduced vue 3, the composition api to address some of the limitions in vue 2 with a special feature call reactivity. In vue 2 (Options api) it was impossible to reuse codes or expose them globally such that they can be shared across vue components expect with...

Choosing Between Composition Api, Vuex And Pinia For State Management

If you are new to vue state management or you’ve never used any front-end framework the likes of React and angular, you may not appreciate the concept of a centralize store for state management or its important while building a large scale app.