add skeleton

This commit is contained in:
Tim Wundenberg
2021-07-28 20:19:05 +02:00
parent 21d61f60bf
commit e12bbaaf9f
11 changed files with 288 additions and 45 deletions

View File

@@ -1,11 +1,18 @@
<template>
<div id="nav">
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
<Navbar />
<router-view />
</div>
</template>
<script>
import Navbar from "@/components/Navbar.vue";
export default {
setup() {},
components: { Navbar },
};
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
@@ -14,17 +21,4 @@
text-align: center;
color: #2c3e50;
}
#nav {
padding: 30px;
}
#nav a {
font-weight: bold;
color: #2c3e50;
}
#nav a.router-link-exact-active {
color: #42b983;
}
</style>
</style>