UNPKG

@aplus-frontend/utils

Version:

Utils for Aplus frontend team.

12 lines (11 loc) 283 B
import type { Plugin } from 'vue'; type EventShim = { new (...args: any[]): { $props: { onClick?: () => void; }; }; }; type SFCWithInstall<T> = T & Plugin & EventShim; export declare function withInstall<T>(comp: T): SFCWithInstall<T>; export {};