UNPKG

element-plus

Version:

A Component Library for Vue3.0

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