summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-01-17 22:46:30 +0300
committerDerick Montague <derick.montague@ibm.com>2020-01-21 21:08:12 +0300
commita2988f40b965fdcf2941ff6e62c5bac5cf0e6988 (patch)
tree2517f594e51376f66b5f352065a86aeffa104900 /src/main.js
parentb935611638d871412c8582c0d9798e109ce4e06e (diff)
downloadwebui-vue-a2988f40b965fdcf2941ff6e62c5bac5cf0e6988.tar.xz
Create basic application using vue
- Create vue app - Add AppHeader and AppNavigation - Set up routes for server overview and local user management - Add themes and set to gray-10 theme - Add active class for current navigation - Add a prototype method named $http to vue prototype - The UI uses console logs in production to communicate to users - Add boostrap vue component library Change-Id: Ib6618e6357ca01bdac6de4ed031a15c8552226f3 Signed-off-by: Derick Montague <derick.montague@ibm.com>
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 00000000..16687c5c
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,26 @@
+import Vue from "vue";
+import App from "./App.vue";
+import router from "./router";
+import store from "./store";
+import Axios from "axios";
+import {
+ ButtonPlugin,
+ NavPlugin,
+ CollapsePlugin,
+ LinkPlugin,
+ NavbarPlugin
+} from "bootstrap-vue";
+
+Vue.use(ButtonPlugin);
+Vue.use(NavPlugin);
+Vue.use(CollapsePlugin);
+Vue.use(LinkPlugin);
+Vue.use(NavbarPlugin);
+
+Vue.prototype.$http = Axios;
+
+new Vue({
+ router,
+ store,
+ render: h => h(App)
+}).$mount("#app");