element-plus/packages/avatar/index.ts

6 lines
139 B
TypeScript
Raw Normal View History

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