mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-20 15:01:47 +01:00
18 lines
314 B
Vue
Executable File
18 lines
314 B
Vue
Executable File
<template>
|
|
<h1 class="mt-16 font-bold text-3xl md:text-5xl mr-2 inline mb-4 border-b-3 border-solid border-indigo-600">
|
|
{{ this.$t(title) }}
|
|
</h1>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: "PageTitle",
|
|
props: {
|
|
title: {
|
|
default: 'Title',
|
|
type: String
|
|
}
|
|
}
|
|
}
|
|
</script>
|