All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s
26 lines
633 B
Vue
26 lines
633 B
Vue
<script setup lang="ts">
|
|
const localePath = useLocalePath()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="menus">
|
|
<NuxtLink :to="localePath('index')">/</NuxtLink>
|
|
<NuxtLink :to="localePath('blog')">/{{ $t('header.links.blog') }}</NuxtLink>
|
|
<NuxtLink :to="localePath('contact')">/{{ $t('header.links.contact') }}</NuxtLink>
|
|
<!-- <NuxtLink class="disabled">Drawings</NuxtLink> -->
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.menus > a {
|
|
margin-right: 10px;
|
|
margin-left: 10px;
|
|
text-decoration: none;
|
|
text-shadow: 0 0 1px var(--color-link);
|
|
}
|
|
|
|
.disabled {
|
|
color: #aaaaaa77;
|
|
}
|
|
</style> |