mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
import Avatar from './Avatar';
|
|
|
|
/* istanbul ignore next */
|
|
Avatar.install = function(app) {
|
|
app.component(Avatar.name, Avatar);
|
|
};
|
|
|
|
export default Avatar;
|