UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue)

28 lines (26 loc) 622 B
import Vue, {VNode} from 'vue'; declare class Dialog extends Vue { header?: any; footer?: any; visible?: boolean; modal?: boolean; contentStyle?: string; rtl?: boolean; closable?: boolean; dismissableMask?: boolean; closeOnEscape?: boolean; showHeader?: boolean; baseZIndex?: number; autoZIndex?: boolean; ariaCloseLabel?: string; position?: string; maximizable?: boolean; $emit(eventName: 'show'): this; $emit(eventName: 'hide'): this; $slots: { '': VNode[]; header: VNode[]; footer: VNode[]; } } export default Dialog;