UNPKG

momentum-modal

Version:

A Vue 3 plugin that lets you implement backend-driven modal dialogs for Inertia apps.

8 lines (7 loc) 193 B
import { App } from "vue"; export type ModalPluginOptions = { resolve: (name: string) => any; }; export declare const plugin: { install(app: App, options: ModalPluginOptions): void; };