Skip to content

Commit 990d58c

Browse files
committed
uncomment
1 parent 05acbad commit 990d58c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/js/app.js

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

20-
// const files = require.context('./', true, /\.vue$/i)
20+
const files = require.context('./', true, /\.vue$/i)
2121

22-
// files.keys().map(key => {
23-
// return Vue.component(_.last(key.split('/')).split('.')[0], files(key))
24-
// })
22+
files.keys().map(key => {
23+
return Vue.component(_.last(key.split('/')).split('.')[0], files(key))
24+
})
2525

2626
/**
2727
* Next, we will create a fresh Vue application instance and attach it to

0 commit comments

Comments
 (0)