Browse Source

Fixed mixed up comment order

Anders Jürisoo 5 years ago
parent
commit
c9046b2291
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/js/app.js

+ 2 - 2
resources/js/app.js

@@ -17,11 +17,11 @@ window.Vue = require('vue');
  * Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
  */
 
-Vue.component('example-component', require('./components/ExampleComponent.vue'));
-
 // const files = require.context('./', true, /\.vue$/i)
 // files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key)))
 
+Vue.component('example-component', require('./components/ExampleComponent.vue'));
+
 /**
  * Next, we will create a fresh Vue application instance and attach it to
  * the page. Then, you may begin adding components to this application