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