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

11 lines
202 B
JavaScript

import Avatar from './Avatar';
import Base from '../base';
/* istanbul ignore next */
Avatar.install = function(Vue) {
Vue.use(Base);
Vue.component(Avatar.name, Avatar);
};
export default Avatar;