After using the new Vue 3 for several months, I have noticed that there is no official style guide available since its release in September. The most comprehensive documentation I have found so far can be accessed at:
Vue Composition api
I have observed that many example js module names in the documentation and online tutorials include the prefix "use", such as useMousePosition.js. I am curious if this prefix follows a convention or if it holds any specific meaning?
Additionally, I tend to store most non-UI logics in separate js files and keep UI-related data and methods within Vue files. This has been my approach with old Vue 2 as well. Is this method still appropriate when working with Vue 3?
Thank you!