Reviewed-on: #277 Reviewed-by: Mikolaj Widla <widlam@noreply.example.com> Co-authored-by: Adam Bem <adam.bem@zoho.eu> Co-committed-by: Adam Bem <adam.bem@zoho.eu>
14 lines
228 B
Vue
14 lines
228 B
Vue
<script setup lang="ts">
|
|
|
|
const props = defineProps(
|
|
{
|
|
name: {type: String, required: true}
|
|
}
|
|
)
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<h3 class="text-lg font-medium mt-2">{{ name }}</h3>
|
|
<p><slot></slot></p>
|
|
</template> |