Skip to content

Commit 7adea12

Browse files
authored
Merge pull request laravel#4867 from ajthinking/patch-1
[5.7] Fixed mixed up comment order
2 parents 2a483bb + c9046b2 commit 7adea12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ window.Vue = require('vue');
1717
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
1818
*/
1919

20-
Vue.component('example-component', require('./components/ExampleComponent.vue'));
21-
2220
// const files = require.context('./', true, /\.vue$/i)
2321
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key)))
2422

23+
Vue.component('example-component', require('./components/ExampleComponent.vue'));
24+
2525
/**
2626
* Next, we will create a fresh Vue application instance and attach it to
2727
* the page. Then, you may begin adding components to this application

0 commit comments

Comments
 (0)