Files
website-old/components/EnvTitle.vue
2020-12-04 11:11:34 +01:00

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>