UNPKG

element-plus

Version:

A Component Library for Vue3.0

12 lines (8 loc) 269 B
import { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils/types' import Link from './src/index.vue' Link.install = (app: App): void => { app.component(Link.name, Link) } const _Link: SFCWithInstall<typeof Link> = Link export default _Link