summaryrefslogtreecommitdiff
path: root/master/src/App.vue
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-05-17 16:05:53 +0200
committerHampusM <hampus@hampusmat.com>2022-05-17 16:05:53 +0200
commit775222b6518324a8cb44a800c256ca98f2a1449b (patch)
tree1cbf28cfacd03c04e0d1ddce225893da054559f2 /master/src/App.vue
parent4c40c538af66570cc4a5a0f0b956afa98f9876db (diff)
add master website
Diffstat (limited to 'master/src/App.vue')
-rw-r--r--master/src/App.vue30
1 files changed, 30 insertions, 0 deletions
diff --git a/master/src/App.vue b/master/src/App.vue
new file mode 100644
index 0000000..ec98c47
--- /dev/null
+++ b/master/src/App.vue
@@ -0,0 +1,30 @@
+<template>
+ <nav>
+ <router-link to="/">Home</router-link> |
+ <router-link to="/about">About</router-link>
+ </nav>
+ <router-view/>
+</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>