mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-18 22:11:44 +01:00
23 lines
276 B
Vue
23 lines
276 B
Vue
<template>
|
|
<h3 class="font-bold text-2xl md:text-4xl mb-2">
|
|
{{ $t(title) }}
|
|
<slot />
|
|
</h3>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "EnvTitle",
|
|
props:{
|
|
title: {
|
|
default: 'Title',
|
|
type: String
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|