Add page title

This commit is contained in:
2021-08-17 21:03:01 +02:00
parent 21fcbc7d37
commit f5cd3cb042
2 changed files with 7 additions and 2 deletions

View File

@@ -9,7 +9,12 @@
import {defineComponent} from "@nuxtjs/composition-api";
export default defineComponent({
name: "services"
name: "services",
head() {
return {
title: `${this.$i18n.t('header.services')} - Arthur Danjou`
}
},
})
</script>