I'm currently trying out Vue 3's Composition API, using a main app and several composition funtions, aka 'composables'. I studied official docs and several tuts. It seems there are many ways of accomplish the same tasks, so I was wandering what is the best for a couple of things:
how to pass reactive variables from the main app to the composables? I mean: should I just pass them as the composable's parameters or should I do it some othe way?
how to use other app's methods or other composables from a composable? :)