%PDF- %PDF-
Direktori : /proc/self/root/home/forge/takeaseat.eco-n-tech.co.uk/components/slots/ |
Current File : //proc/self/root/home/forge/takeaseat.eco-n-tech.co.uk/components/slots/Block.vue |
<template> <section class="bg-gray py-8 md:py-20 px-4 md:px-8 mb-8"> <div class="max-w-xl mx-auto w-full"> <header class="text-center mb-10"> <h2 :class="description ? 'mb-8' : ''" class="text-2xl sm:text-3xl font-bold">{{ title }}</h2> <p class="text-sm sm:text-base" v-if="description">{{ description }}</p> </header> </div> <div :class="width ? width : 'max-w-xl'" class="mx-auto w-full"> <slot></slot> </div> </section> </template> <script> export default { props: { title: { type: String, required: true }, description: { type: String, required: false }, width: { type: String, required: false, } } } </script>