UNPKG

soft-ui-vue3

Version:

一个Vue3前端组件库

7 lines (5 loc) 189 B
import type { AppContext, Plugin } from 'vue' export type SFCWithInstall<T> = T & Plugin export type SFCInstallWithContext<T> = SFCWithInstall<T> & { _context: AppContext | null }