mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 20:19:35 +01:00
26 lines
398 B
Vue
26 lines
398 B
Vue
<template>
|
|
<div>
|
|
<div>
|
|
<slot name="icon" />
|
|
</div>
|
|
<div class="sm:mt-8">
|
|
<h1 class="font-bold tracking-wider text-3xl mb-4">
|
|
{{ $t(title) }}
|
|
</h1>
|
|
<slot name="content"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "ServicePart",
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: 'services.1.title'
|
|
}
|
|
}
|
|
}
|
|
</script>
|