May 18th, 2020
If you want to become a more advanced Vue developer, especially if you want to use advanced features like the Composition API, it's important to have some level of understandi...
vue.js reactivity composition api design patterns components
May 9th, 2020
Wondering what the key features and changes of Vue 3 are? In this article, I'll highlight them with a walkthrough of a simple Vue 3 app....
vue.js components composition api design patterns
March 31st, 2020
Forms are one of the trickiest parts of frontend development and where you'll likely find a lot of messy code. In this tutorial, you'll see how the new Vue Composition API wil...
vue.js composition api forms
March 2nd, 2020
Vue provides a number of different APIs and patterns you can use for extending a component. In this article, I'll give you a rundown of the different options including mixins,...
vue.js components design patterns composition api renderless components higher-order components
February 24th, 2020
Vue provides a way of extracting and reusing the state and logic of a component, but the template is deemed single-use only. In this article, I'll show you a hack for extendin...
vue.js components composition api design patterns templates
February 17th, 2020
The new Vue 3 composition API was created to address scaling issues with the options API. But is it still useful in smaller apps?...
vue.js composition api components design patterns