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>
diff --git a/src/views/AccessControl/LocalUserManagement.vue b/src/views/AccessControl/LocalUserManagement.vue
new file mode 100644
index 0000000..3233aec
--- /dev/null
+++ b/src/views/AccessControl/LocalUserManagement.vue
@@ -0,0 +1,3 @@
+<template>
+ <h1>Local user management</h1>
+</template>
diff --git a/src/views/Home.vue b/src/views/Home.vue
new file mode 100644
index 0000000..f6cbd4e
--- /dev/null
+++ b/src/views/Home.vue
@@ -0,0 +1,15 @@
+<template>
+ <AppOverview />
+</template>
+
+<script>
+// @ is an alias to /src
+import AppOverview from "@/components/AppOverview";
+
+export default {
+ name: "app-overview",
+ components: {
+ AppOverview
+ }
+};
+</script>