UNPKG

fine-true

Version:

A small and beautiful Vue3 version of the UI Library

11 lines (7 loc) 256 B
import { App,Component } from 'vue' const withInstall = function(component:Component){ (component as Record<string, unknown>).install = function(app:App){ app.component(component.name!,component) } } export default withInstall