element-plus/packages/alert/index.ts
2020-10-29 19:37:18 +08:00

9 lines
155 B
TypeScript

import { App } from 'vue'
import Alert from './src/index.vue'
export default (app: App): void => {
app.component(Alert.name, Alert)
}
export { Alert }