From f9832b0edc48b349f6de2df419815ef38a6ae469 Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Tue, 12 May 2020 12:04:46 -0700 Subject: 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 Change-Id: I246d761d90db36efeb442b0ee1074b629d32edef --- src/main.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.js') diff --git a/src/main.js b/src/main.js index 9e0502de..6896ec2f 100644 --- a/src/main.js +++ b/src/main.js @@ -24,6 +24,7 @@ import { ModalPlugin, NavbarPlugin, NavPlugin, + PaginationPlugin, ProgressPlugin, TablePlugin, ToastPlugin, @@ -87,6 +88,7 @@ Vue.use(ListGroupPlugin); Vue.use(ModalPlugin); Vue.use(NavbarPlugin); Vue.use(NavPlugin); +Vue.use(PaginationPlugin); Vue.use(ProgressPlugin); Vue.use(TablePlugin); Vue.use(ToastPlugin); -- cgit v1.2.3