Nuxt/examples/i18n/pages/_lang/index.vue

22 lines
335 B
Vue
Raw Normal View History

2017-02-08 19:13:14 +00:00
<template>
<div class="Content">
<div class="container">
2017-02-09 23:45:36 +00:00
<h1 class="Content__Title">{{ $t('home.title') }}</h1>
<p>{{ $t('home.introduction') }}</p>
2017-02-08 19:13:14 +00:00
</div>
</div>
</template>
<style>
.Content
{
padding: 50px 0;
text-align: center;
}
.Content__Title
{
font-weight: 300;
padding-bottom: 30px;
}
</style>