Import global components using index.js

This commit is contained in:
Bubka
2020-01-15 21:04:30 +01:00
parent 38288332c5
commit 767daf0565
2 changed files with 10 additions and 2 deletions

9
resources/js/components/index.js vendored Normal file
View File

@ -0,0 +1,9 @@
import Vue from 'vue'
import Button from './Button'
// Components that are registered globaly.
[
Button,
].forEach(Component => {
Vue.component(Component.name, Component)
})