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 Card from './src/index.vue' Card.install = (app: App): void => { app.component(Card.name, Card) } const _Card: SFCWithInstall<typeof Card> = Card export default _Card