Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
resources
/
scripts
/
components
/
notifications
:
BaseSettingCard-20250318173008.vue
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<template> <BaseCard> <div class="flex flex-wrap justify-between lg:flex-nowrap mb-5"> <div> <h6 class="font-medium text-lg text-left"> {{ title }} </h6> <p class=" mt-2 text-sm leading-snug text-left text-gray-500 max-w-[680px] " > {{ description }} </p> </div> <div class="mt-4 lg:mt-0 lg:ml-2"> <slot name="action" /> </div> </div> <slot /> </BaseCard> </template> <script setup> defineProps({ title: { type: String, required: true, }, description: { type: String, required: true, }, }) </script>