Provide implicit imports for the most commonly used vue functions.
What problem does this feature solve?
Eliminate unnecessary imports in vue files for functions that are almost always used. (I am a quasar user and I love not having to import every quasar vue component to use it.)
I use vue 3 with script setup. I would like most of the frequently used functions to be automatically available, like defineProps (which I know is a compiler macro). I can't imagine any real view project that isn't using ref, reactive, computed, watch somewhere in some vue file. This means that those functions will be in the packaged dist so auto import doesn't add any overhead to the app.
I am not experienced enough to know if others should be part of the list, such as lifecycle functions and navigation guards.
I love the concise way a vue 3 component with