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

11 lines
202 B
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Avatar from './Avatar';
import Base from '../base';
2017-11-09 10:57:34 +00:00
/* istanbul ignore next */
2019-01-12 03:33:27 +00:00
Avatar.install = function(Vue) {
Vue.use(Base);
2019-01-12 03:33:27 +00:00
Vue.component(Avatar.name, Avatar);
};
2019-01-12 03:33:27 +00:00
export default Avatar;