UNPKG

t-fighting-design

Version:

Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.

13 lines (12 loc) 325 B
import type { InstallType } from '../_interface'; /** * 注册组件 * @param main 组件实例 */ export declare const install: <T>(main: T) => InstallType<T>; /** * 注册内置组件 * @param main 组件实例 * @param name 组件名 */ export declare const installFn: <T>(main: T, name: string) => InstallType<T>;