This commit is contained in:
2020-07-01 23:47:51 +02:00
parent 3adef6ee28
commit 3b38a8477b
39 changed files with 428 additions and 241 deletions

View File

@@ -1,32 +1,16 @@
<template>
<div id="app">
<div id="nav">
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</div>
<h1>Bons programmeurs</h1>
<router-view />
</div>
</template>
<style lang="scss">
@import '@/styles/app';
#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;
}
}
display: flex;
flex-direction: column;
min-height: 100vh;
}
</style>