This lesson is for members. Join us?
Subscribe now and get immediate access to this course, 30 more and all future Vue.js courses!
Creating a usePost Composable
In this lesson we create our first Vue Composition API composable! Composables provide us with the ability to do things outside of a component that we would normally do inside of a setup function. This includes: defining reactive data, defining functions to mutate that data, and defining computed props calculated reactively based on that data.