I am trying to transition to Nuxt 3, using nuxt bridge. I am currently on nuxt 2, using the composition api. I see there is this concept of auto-import, but when I look at the documentation I only see that there are two features imported, ref
and computed
.
import { ref, computed } from '#imports'
What else can I reference from #imports
besides ref
and computed
? Is there a complete list of exportable functions or objects for #imports
? Am I only able to reference ref
and computed
from #imports
?