I am integrating Primevue in my vue project.
As far as I see in documentation, I need to import components in each vue I use them.
I wonder whether there is a way to have single import statement (either for all components, or for each one I use) in one file, and then use them wherever I need.
I also would like to have a lazy loading (although since all project is compiled to a single .js
I don’t know if there is a meaning for this).
Is there a way to do it?