We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2af39 commit c2359feCopy full SHA for c2359fe
resources/js/app.js
@@ -17,11 +17,13 @@ window.Vue = require('vue');
17
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
18
*/
19
20
-const files = require.context('./', true, /\.vue$/i)
+Vue.component('example-component', require('./components/ExampleComponent.vue'));
21
22
-files.keys().map(key => {
23
- return Vue.component(_.last(key.split('/')).split('.')[0], files(key))
24
-})
+// const files = require.context('./', true, /\.vue$/i)
+
+// files.keys().map(key => {
25
+// return Vue.component(_.last(key.split('/')).split('.')[0], files(key))
26
+// })
27
28
/**
29
* Next, we will create a fresh Vue application instance and attach it to
0 commit comments