mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
19 lines
313 B
Vue
19 lines
313 B
Vue
<template>
|
|
<div class="Content">
|
|
<div class="container">
|
|
<h1 class="Content__Title">
|
|
{{ $t('home.title') }}
|
|
</h1>
|
|
<p>{{ $t('home.introduction') }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
head() {
|
|
return { title: this.$t('home.title') }
|
|
}
|
|
}
|
|
</script>
|