NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/ant-design-vue/es/avatar/index.js
2023-09-14 14:47:11 +08:00

10 lines
202 B
Java

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;