summaryrefslogtreecommitdiff
path: root/iridescence/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'iridescence/src/App.vue')
-rw-r--r--iridescence/src/App.vue32
1 files changed, 32 insertions, 0 deletions
diff --git a/iridescence/src/App.vue b/iridescence/src/App.vue
new file mode 100644
index 0000000..0228dd3
--- /dev/null
+++ b/iridescence/src/App.vue
@@ -0,0 +1,32 @@
+<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>