You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
659 B
36 lines
659 B
<template>
|
|
<nav>
|
|
<div class="nav-brand">
|
|
<h2>Vue Procvičení</h2>
|
|
</div>
|
|
<div class="nav-links">
|
|
<router-link to="/">Základy</router-link> |
|
|
<router-link to="/contacts">Kontakty</router-link>|
|
|
<router-link to="/about">O aplikaci</router-link>
|
|
</div>
|
|
</nav>
|
|
<router-view/>
|
|
</template>
|
|
|
|
<style>
|
|
#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;
|
|
}
|
|
|
|
nav a {
|
|
font-weight: bold;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
nav a.router-link-exact-active {
|
|
color: #42b983;
|
|
}
|
|
</style>
|
|
|