In the midst of experimenting with Vue 3's Composition API, I have set up a main app and multiple composition functions, or 'composables'. After delving into the official documentation and various tutorials, it appears that there are numerous ways to achieve the same tasks. This has led me to ponder what might be optimal for a few specific scenarios:
What is the most effective method for passing reactive variables from the main app to the composables? Should they simply be passed as parameters to the composable functions, or is there another approach that would be more suitable?
How can one access methods from other areas of the application or from different composables within a single composable function?