element-plus/packages/alert/index.ts

9 lines
155 B
TypeScript
Raw Normal View History

2020-08-17 22:23:45 +08:00
import { App } from 'vue'
import Alert from './src/index.vue'
2020-10-29 17:28:26 +08:00
2020-08-17 22:23:45 +08:00
export default (app: App): void => {
app.component(Alert.name, Alert)
}
2020-10-29 17:28:26 +08:00
export { Alert }