Fix unterminated statements

This tiny patch adds missing commas to the app.js file.
This commit is contained in:
Andrew Gorpenko 2019-02-26 15:51:24 +02:00 committed by GitHub
parent 83b6be51ad
commit 66eeb3bca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
resources/js/app.js vendored
View File

@ -17,8 +17,8 @@ window.Vue = require('vue');
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
*/
// const files = require.context('./', true, /\.vue$/i)
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default))
// const files = require.context('./', true, /\.vue$/i);
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default));
Vue.component('example-component', require('./components/ExampleComponent.vue').default);