PHP Classes

File: resources/js/Components/ActionSection.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg SAAS PHP CRM Open Source   resources/js/Components/ActionSection.vue   Download  
File: resources/js/Components/ActionSection.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg SAAS PHP CRM Open Source
Application to manage the contacts of customers
Author: By
Last change:
Date: 1 year ago
Size: 597 bytes
 

Contents

Class file image Download
<script setup> import SectionTitle from './SectionTitle.vue'; </script> <template> <div class="md:grid md:grid-cols-3 md:gap-6"> <SectionTitle> <template #title> <slot name="title" /> </template> <template #description> <slot name="description" /> </template> </SectionTitle> <div class="mt-5 md:mt-0 md:col-span-2"> <div class="px-4 py-5 sm:p-6 bg-white shadow sm:rounded-lg"> <slot name="content" /> </div> </div> </div> </template>