From 35080acbbf29de7cfd21d19f3c3637d7231f2a7e Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Fri, 17 Jan 2020 15:38:57 -0600 Subject: Add local user page - Add Bootstrap out of box table component - Import layout plugin - Add user role privilege table - Add local user modals - Add inline table actions - Add local user store - Add Axios requests Initial setup to use Vuex store for local user management page. For now using a timeout to fake fetching async data. Data flow is working between store and component. Using Axios in very unrefined way, just to get some API requests going. Simple user request working if base, username, password variables defined. Signed-off-by: Yoshie Muranaka Signed-off-by: Derick Montague Change-Id: I3b0d757857268feff32c6bec1c3fd95c302a568f --- src/main.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/main.js') diff --git a/src/main.js b/src/main.js index 16687c5c..742b991e 100644 --- a/src/main.js +++ b/src/main.js @@ -8,7 +8,10 @@ import { NavPlugin, CollapsePlugin, LinkPlugin, - NavbarPlugin + NavbarPlugin, + TablePlugin, + LayoutPlugin, + ModalPlugin } from "bootstrap-vue"; Vue.use(ButtonPlugin); @@ -16,6 +19,9 @@ Vue.use(NavPlugin); Vue.use(CollapsePlugin); Vue.use(LinkPlugin); Vue.use(NavbarPlugin); +Vue.use(TablePlugin); +Vue.use(LayoutPlugin); +Vue.use(ModalPlugin); Vue.prototype.$http = Axios; -- cgit v1.2.3