summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-01-18 01:10:34 +0300
committerGunnar Mills <gmills@us.ibm.com>2020-01-21 21:32:49 +0300
commit42c1989301a81ebaa4733f403fcdc6c0a5368f11 (patch)
tree96800ea324ecfba8187c1ef6ce310329d95e12f4 /src/main.js
parent35080acbbf29de7cfd21d19f3c3637d7231f2a7e (diff)
downloadwebui-vue-42c1989301a81ebaa4733f403fcdc6c0a5368f11.tar.xz
Add primary navigation with default styles
- Import and use Bootstrap Vue components for the navigation structure - Import and add icons to the navigation sections - Add minor style overrides Change-Id: I4c1903390d75aff086c912a710f4c04d38d28a28 Signed-off-by: Derick Montague <derick.montague@ibm.com>
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main.js b/src/main.js
index 742b991e..4db1b2bf 100644
--- a/src/main.js
+++ b/src/main.js
@@ -5,23 +5,23 @@ import store from "./store";
import Axios from "axios";
import {
ButtonPlugin,
- NavPlugin,
CollapsePlugin,
+ LayoutPlugin,
LinkPlugin,
+ ModalPlugin,
NavbarPlugin,
- TablePlugin,
- LayoutPlugin,
- ModalPlugin
+ NavPlugin,
+ TablePlugin
} from "bootstrap-vue";
+Vue.use(LayoutPlugin);
Vue.use(ButtonPlugin);
-Vue.use(NavPlugin);
Vue.use(CollapsePlugin);
Vue.use(LinkPlugin);
+Vue.use(ModalPlugin);
Vue.use(NavbarPlugin);
+Vue.use(NavPlugin);
Vue.use(TablePlugin);
-Vue.use(LayoutPlugin);
-Vue.use(ModalPlugin);
Vue.prototype.$http = Axios;