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
x
11
11
1
window.Vue = require('vue');
2
Vue.component('loading', require('./components/global-components/Loading.vue').default);
3
Vue.component('carousel', require('./components/global-components/Carousel.vue').default);
4
Vue.component('dropdown', require('./components/global-components/Dropdown.vue').default);
5
Vue.component('tab', require('./components/global-components/Tab.vue').default);
6
7
8
9
10
More than 50 components here.
11
Advertisement
Answer
you can safely make a globalComponents.js
where are you doing yours
JavaScript
1
2
1
Vue.component ('loading', require ('./ components / global-components / Loading.vue'). Default);
2
and in the main.js or app.js you do
JavaScript
1
2
1
import 'path/to/globalComponents.js'
2