element-plus/packages/avatar/index.ts

9 lines
159 B
TypeScript
Raw Normal View History

2020-08-02 18:27:46 +08:00
import { App } from 'vue'
import Avatar from './src/index.vue'
2020-10-29 17:28:26 +08:00
2020-08-02 18:27:46 +08:00
export default (app: App): void => {
app.component(Avatar.name, Avatar)
}
2020-10-29 17:28:26 +08:00
export { Avatar }