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) [![Discord Chat](https://img.shields.io/discord/55794023

27 lines (20 loc) 697 B
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; export interface DynamicDialogProps {} export declare type DynamicDialogEmits = {}; export interface DynamicDialogSlots {} declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {} declare module '@vue/runtime-core' { interface GlobalComponents { DynamicDialog: GlobalComponentConstructor<DynamicDialog>; } } /** * * DynamicDialogs can be created dynamically with any component as the content using a DialogService. * * Demos: * * - [DynamicDialog](https://www.primefaces.org/primevue/dynamicdialog) * */ export default DynamicDialog;