Skip to content
Advertisement

How to import all global Vue components in single file

I have a pretty big Vuejs app. I had imported all my components in the app.js file globally. It’s working just fine but for a better structure, I want to separate all my component imports in a single other file.
Is it possible?
Here is my app.js file example:

JavaScript

Advertisement

Answer

you can safely make a globalComponents.js

where are you doing yours

JavaScript

and in the main.js or app.js you do

JavaScript
Advertisement