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

47 lines (40 loc) 1.18 kB
/** * * DynamicDialogs can be created dynamically with any component as the content using a DialogService. * * [Live Demo](https://primevue.org/dynamicdialog) * * @module dynamicdialog * */ import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; /** * Defines valid properties in DynamicDialog component. */ export interface DynamicDialogProps {} /** * Defines valid emits in DynamicDialog component. */ export interface DynamicDialogEmits {} /** * Defines valid slots in DynamicDialog component. */ export interface DynamicDialogSlots {} /** * **PrimeVue - DynamicDialog** * * _DynamicDialogs can be created dynamically with any component as the content using a DialogService._ * * [Live Demo](https://www.primevue.org/dynamicdialog/) * --- --- * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) * * @group Component */ declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {} declare module '@vue/runtime-core' { interface GlobalComponents { DynamicDialog: GlobalComponentConstructor<DynamicDialog>; } } export default DynamicDialog;