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 ab8ac54 commit a7bb9ecCopy full SHA for a7bb9ec
src/index.js
@@ -1,6 +1,7 @@
1
import Bus from './Bus'
2
import LoadingMixin from './LoadingMixin';
3
-import VueProgressBar from 'vue-progressbar'
+import VueProgressBar from 'vue-progressbar';
4
+import LoadingComponent from './LoadingComponent.vue'
5
6
export default {
7
@@ -14,7 +15,7 @@ export default {
14
15
Vue.use(VueProgressBar, pbConfig);
16
17
Vue.mixin(LoadingMixin);
- Vue.component('vue-loading-component');
18
+ Vue.component('vue-loading-component', LoadingComponent);
19
}
20
21
0 commit comments