Skip to content

Commit 66eeb3b

Browse files
authored
Fix unterminated statements
This tiny patch adds missing commas to the app.js file.
1 parent 83b6be5 commit 66eeb3b

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)