element-plus
Version:
> TODO: description
13 lines (9 loc) • 299 B
text/typescript
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 = Card as SFCWithInstall<typeof Card>
export default _Card
export const ElCard = _Card