# Modal
If you want to display some content on demand in a very subtle way, the Vue Material Kit Modal is the perfect choice for this. We created custom modal component and you can easily use it like this:
import {Modal} from '@/components'
            # Local Usage
components: {
  Modal
}
            # Global Usage
Vue.component(Modal)
            # Clasic Modal
# Modal Slots
| Name | Description | 
|---|---|
| header | Default card header | 
| body | Default card body | 
| footer | Content for card footer |