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

14 lines
315 B
TypeScript
Raw Normal View History

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