Nuxt/examples/i18n/layouts/default.vue

98 lines
1.7 KiB
Vue
Raw Normal View History

2017-02-08 19:13:14 +00:00
<template>
<div>
<header class="Header">
<div class="container">
<h1 class="Header__Title">Nuxt i18n</h1>
<nav class="Header__Menu">
2017-02-08 23:46:52 +00:00
<nuxt-link class="Header__Link" :to="path('/')">
2017-02-09 23:45:36 +00:00
{{ $t('links.home') }}
2017-02-08 19:13:14 +00:00
</nuxt-link>
<nuxt-link class="Header__Link" :to="path('/about')">
2017-02-09 23:45:36 +00:00
{{ $t('links.about') }}
2017-02-08 19:13:14 +00:00
</nuxt-link>
2017-02-08 23:46:52 +00:00
<nuxt-link class="Header__Link" v-if="$store.state.lang.lang === 'en'" to="/fr">
2017-02-09 23:45:36 +00:00
{{ $t('links.french') }}
2017-02-08 19:13:14 +00:00
</nuxt-link>
2017-02-08 23:46:52 +00:00
<nuxt-link class="Header__Link" v-else to="/">
2017-02-09 23:45:36 +00:00
{{ $t('links.english') }}
2017-02-08 23:46:52 +00:00
</nuxt-link>
2017-02-08 19:13:14 +00:00
</nav>
</div>
</header>
<nuxt/>
</div>
</template>
<script>
export default {
methods: {
path (url) {
2017-02-08 23:46:52 +00:00
return (this.$store.state.lang.lang === 'en' ? url : '/' + this.$store.state.lang.lang + url)
2017-02-08 19:13:14 +00:00
}
}
}
</script>
<style>
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;
}
*, *:before, *:after
{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.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;
}
</style>