aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-status/src/App.vue')
-rw-r--r--kamon-status/src/App.vue29
1 files changed, 29 insertions, 0 deletions
diff --git a/kamon-status/src/App.vue b/kamon-status/src/App.vue
new file mode 100644
index 00000000..f300d4b4
--- /dev/null
+++ b/kamon-status/src/App.vue
@@ -0,0 +1,29 @@
+<template>
+ <div id="app">
+ <div id="nav">
+ <router-link to="/">Home</router-link> |
+ <router-link to="/about">About</router-link>
+ </div>
+ <router-view/>
+ </div>
+</template>
+
+<style lang="scss">
+#app {
+ font-family: 'Avenir', Helvetica, Arial, sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-align: center;
+ color: #2c3e50;
+}
+#nav {
+ padding: 30px;
+ a {
+ font-weight: bold;
+ color: #2c3e50;
+ &.router-link-exact-active {
+ color: #42b983;
+ }
+ }
+}
+</style>