uncomment
This commit is contained in:
parent
05acbad5b6
commit
990d58c78f
|
@ -17,11 +17,11 @@ window.Vue = require('vue');
|
||||||
* Eg. ./components/CreateUser.vue -> <create-user></create-user>
|
* Eg. ./components/CreateUser.vue -> <create-user></create-user>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// const files = require.context('./', true, /\.vue$/i)
|
const files = require.context('./', true, /\.vue$/i)
|
||||||
|
|
||||||
// files.keys().map(key => {
|
files.keys().map(key => {
|
||||||
// return Vue.component(_.last(key.split('/')).split('.')[0], files(key))
|
return Vue.component(_.last(key.split('/')).split('.')[0], files(key))
|
||||||
// })
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Next, we will create a fresh Vue application instance and attach it to
|
* Next, we will create a fresh Vue application instance and attach it to
|
||||||
|
|
Loading…
Reference in New Issue