13 lines
238 B
Vue
13 lines
238 B
Vue
<template>
|
|
<nav class="no-print flex-row">
|
|
<RouterLink to="/"><h1>HOME</h1></RouterLink>
|
|
<!-- <RouterLink to="/cv"><h1>CV</h1></RouterLink> -->
|
|
</nav>
|
|
</template>
|
|
|
|
<style scoped>
|
|
nav {
|
|
height: 10vh;
|
|
}
|
|
</style>
|