Create LoadingBar component
Create loading bar component to indicate when page data
is 'loading'. Not every component view will need to show the
loading bar (eg Reboot BMC).
The LoadingBarMixin can be imported per component as needed.
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I6735be37bc0a81f5bb2b7c93fb31a0e0ef9b40d1
diff --git a/src/main.js b/src/main.js
index b59afd9..d9f1e78 100644
--- a/src/main.js
+++ b/src/main.js
@@ -24,6 +24,7 @@
ModalPlugin,
NavbarPlugin,
NavPlugin,
+ ProgressPlugin,
TablePlugin,
ToastPlugin,
TooltipPlugin
@@ -91,6 +92,7 @@
Vue.use(ModalPlugin);
Vue.use(NavbarPlugin);
Vue.use(NavPlugin);
+Vue.use(ProgressPlugin);
Vue.use(TablePlugin);
Vue.use(ToastPlugin);
Vue.use(TooltipPlugin);