Skip to content

Commit 505a891

Browse files
authored
Merge pull request laravel#4952 from andrewgorpenko/andrewgorpenko-patch-1
Fix unterminated statements
2 parents 4574265 + 66eeb3b commit 505a891

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,8 +17,8 @@ window.Vue = require('vue');
1717
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
1818
*/
1919

20-
// const files = require.context('./', true, /\.vue$/i)
21-
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default))
20+
// const files = require.context('./', true, /\.vue$/i);
21+
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default));
2222

2323
Vue.component('example-component', require('./components/ExampleComponent.vue').default);
2424

0 commit comments

Comments
 (0)