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.