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 }
|