I am writing a module that adds several components like Form, Question, Button etc.
The module is configured to add auto-import components with addComponentsDir with a prefix (say My). So I can use MyForm and MyQuestion in the Nuxt app and it works fine!
However I can't seem to understand how I can use autoimport in the module itself. So I want to import Question in Button but still keep the prefix variable through ModuleOptions and Question component overwriteable in the final app. How can I achieve this?