ant-design-vue/components/avatar/index.js

9 lines
157 B
JavaScript
Raw Normal View History

2019-01-12 11:33:27 +08:00
import Avatar from './Avatar';
2017-11-09 18:57:34 +08:00
/* istanbul ignore next */
2020-06-08 15:38:07 +08:00
Avatar.install = function(app) {
app.component(Avatar.name, Avatar);
2019-01-12 11:33:27 +08:00
};
2019-01-12 11:33:27 +08:00
export default Avatar;