mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
12 lines
269 B
TypeScript
12 lines
269 B
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: SFCWithInstall<typeof Card> = Card
|
|
|
|
export default _Card
|