primevue-mirror/src/components/dialog/Dialog.d.ts

24 lines
545 B
TypeScript
Raw Normal View History

2019-05-28 12:12:03 +00:00
import Vue, {VNode} from 'vue';
export declare class Dialog extends Vue {
header?: any;
footer?: any;
visible?: boolean;
modal?: boolean;
contentStyle?: string;
rtl?: boolean;
closable?: boolean;
showHeader?: boolean;
baseZIndex?: number;
autoZIndex?: boolean;
ariaCloseLabel?: string;
2020-02-06 11:57:20 +00:00
position?: string;
maximizable?: boolean;
2019-05-28 12:12:03 +00:00
$emit(eventName: 'show'): this;
$emit(eventName: 'hide'): this;
$slots: {
'': VNode[];
header: VNode[];
footer: VNode[];
}
}