Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- import { ToastifyContainer, type ToastFunc } from 'vue3-toastify';
- import type { Plugin } from 'vue';
-
- declare const Vue3Toastify: Plugin;
- export default Vue3Toastify;
-
- declare global {
- interface Window {
- // toast for CDN compatibility
- Vue3Toastify?: typeof Vue3Toastify;
- }
- }
-
- declare module 'vue' {
- export interface ComponentCustomProperties {$toast: ToastFunc}
-
- export interface GlobalComponents {ToastifyContainer: typeof ToastifyContainer}
- }
|