UI LibraryUI Library
Guide
Components
Styling
Repo
Guide
Components
Styling
Repo
  • Guide

    • Introduction
    • Getting Started
  • Components

    • CataUiAccordion
    • CataUiAccordionItem
    • CataUiAlert
    • CataUiAnchorMenu
    • CataUiBadge
    • CataUiButton
    • CataUiCollapse
    • CataUiDraggable
    • CataUiDropdown
    • CataUiDropover
    • CataUiFileTree
    • CataUiIcon
    • CataUiIconSwitch
    • CataUiInput
    • CataUiInputCheckbox
    • CataUiInputColor
    • CataUiInputDate
    • CataUiInputGroup
    • CataUiInputRadio
    • CataUiInputSearch
    • CataUiInputSelect
    • CataUiMasonry
    • CataUiMasonryTile
    • CataUiLogo
    • CataUiModal
    • CataUiPaginate
    • CataUiProgress
    • CataUiSpinner
    • CataUiStatusLabel
    • CataUiSwitch
    • CataUiTable
    • CataUiTableAG
    • CataUiTableFooter
    • CataUiTabs
    • CataUiTabSwitch
    • CataUiTooltip
  • Styling

    • Colors
    • Icons
    • Typography
    • Utils

CataUiModal

A modal component that creates a dialog overlay on the page. It provides a structured way to display content in a dialog box with optional header, subheader, body, and footer sections.

<CataUiModal
    v-if="showModal"
    @close="showModal = false">
    <template #header>
        Header content
    </template>
    <template #subheader>
        Subheader content
    </template>
    <template #body>
        Body content
    </template>
    <template #footer>
        Footer content
    </template>
</CataUiModal>

Props

PropDescriptionTypeDefaultRequiredOptions
closeableControls if the modal can be closed with a button or background clickBooleantruefalse
sizeControls the width of the modal dialogString'medium'false'small', 'medium', 'large'

Events

EventDescription
closeTriggered when the user clicks the close button or background (if closeable is true)

Slots

SlotDescription
bodyContent for the main body section of the modal
footerContent for the bottom section, typically for actions
headerContent for the main heading of the modal
subheaderSecondary heading content displayed below the header
Prev
CataUiLogo
Next
CataUiPaginate