Fix unterminated statements
This tiny patch adds missing commas to the app.js file.
This commit is contained in:
parent
83b6be51ad
commit
66eeb3bca3
|
@ -17,8 +17,8 @@ window.Vue = require('vue');
|
||||||
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
|
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// const files = require.context('./', true, /\.vue$/i)
|
// const files = require.context('./', true, /\.vue$/i);
|
||||||
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default))
|
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default));
|
||||||
|
|
||||||
Vue.component('example-component', require('./components/ExampleComponent.vue').default);
|
Vue.component('example-component', require('./components/ExampleComponent.vue').default);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue