Add pagination to Event Log table
Created BvPaginationMixin for shared pagination values
and methods. Chose to use exising BoostrapVue components
as-is instead of wrapping in a custom component since
it would add unnecessary complexity.
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I246d761d90db36efeb442b0ee1074b629d32edef
diff --git a/src/main.js b/src/main.js
index 9e0502d..6896ec2 100644
--- a/src/main.js
+++ b/src/main.js
@@ -24,6 +24,7 @@
ModalPlugin,
NavbarPlugin,
NavPlugin,
+ PaginationPlugin,
ProgressPlugin,
TablePlugin,
ToastPlugin,
@@ -87,6 +88,7 @@
Vue.use(ModalPlugin);
Vue.use(NavbarPlugin);
Vue.use(NavPlugin);
+Vue.use(PaginationPlugin);
Vue.use(ProgressPlugin);
Vue.use(TablePlugin);
Vue.use(ToastPlugin);