Nuxt/examples/i18n/layouts/default.vue

100 lines
2.0 KiB
Vue

<template>
<div>
<header class="Header">
<div class="container">
<h1 class="Header__Title">Nuxt i18n</h1>
<nav class="Header__Menu">
<nuxt-link class="Header__Link" :to="path('/')" exact>
{{ $t('links.home') }}
</nuxt-link>
<nuxt-link class="Header__Link" :to="path('/about')" exact>
{{ $t('links.about') }}
</nuxt-link>
<nuxt-link class="Header__Link" v-if="$i18n.locale === 'en'" :to="`/fr` + $route.fullPath" active-class="none" exact>
{{ $t('links.french') }}
</nuxt-link>
<nuxt-link class="Header__Link" v-else :to="$route.fullPath.replace(/^\/[^\/]+/, '')" active-class="none" exact>
{{ $t('links.english') }}
</nuxt-link>
</nav>
</div>
</header>
<nuxt/>
</div>
</template>
<script>
export default {
methods: {
path (url) {
return (this.$i18n.locale === 'en' ? url : '/' + this.$i18n.locale + url)
}
}
}
</script>
<style>
*, *:before, *:after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html, body {
background-color: #fff;
color: #2e2f30;
letter-spacing: 0.5px;
font-size: 18px;
font-family: "Source Sans Pro", Arial, sans-serif;
height: 100vh;
margin: 0;
}
.container {
width: 75%;
margin: 0 auto;
}
.container:after {
content: "";
display: table;
clear: both;
}
.Header {
color: #fff;
height: 80px;
line-height: 80px;
background-color: #2e2f30;
}
.Header__Title {
float: left;
font-weight: 300;
font-size: 30px;
}
.Header__Menu {
float: right;
}
.Header__Link {
font-size: 16px;
color: #fff;
border: 1px solid #fff;
padding: 7px 12px;
text-transform: uppercase;
text-decoration: none;
border-radius: 5px;
margin-left: 10px;
}
.Header__Link:hover {
color: #2e2f30;
background-color: #fff;
}
.nuxt-link-active {
color: cyan;
}
.Content {
padding: 50px 0;
text-align: center;
}
.Content__Title {
font-weight: 300;
padding-bottom: 30px;
}
</style>