element-plus/packages/components/badge/index.ts

14 lines
310 B
TypeScript
Raw Normal View History

2020-07-24 22:22:21 +08:00
import { App } from 'vue'
import Badge from './src/index.vue'
2020-10-29 17:28:26 +08:00
import type { SFCWithInstall } from '@element-plus/utils/types'
Badge.install = (app: App): void => {
2020-07-24 22:22:21 +08:00
app.component(Badge.name, Badge)
}
2020-10-29 17:28:26 +08:00
const _Badge = Badge as SFCWithInstall<typeof Badge>
export default _Badge
export const ElBadge = _Badge