mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
import { inject } from 'vue';
|
|
|
|
export const PrimeVueDialogSymbol = Symbol();
|
|
|
|
export function useDialog() {
|
|
const PrimeVueDialog = inject(PrimeVueDialogSymbol);
|
|
|
|
if (!PrimeVueDialog) {
|
|
throw new Error('No PrimeVue Dialog provided!');
|
|
}
|
|
|
|
return PrimeVueDialog;
|
|
}
|