I've started using the new Vue 3 for months, there seems to be no style guide for new Vue 3 since the official release in September. So far I just see the most comprehensive documentation here:
I find that the example js module names usually have the prefix "use" in the documentation and in some online tutorials. Foe example, useMousePosition.js. I just wonder if it's a convention and is there any meaning behind the prefix "use"?
And one more question, I keep most "non-UI" logics in the js files, and UI-related data and methods in vue files. This was also my approach when doing in the old Vue 2. Is this a proper way also when working in Vue3 ?
Thank you!