index.js 202 B

12345678910
  1. import Avatar from './Avatar';
  2. import Base from '../base';
  3. /* istanbul ignore next */
  4. Avatar.install = function (Vue) {
  5. Vue.use(Base);
  6. Vue.component(Avatar.name, Avatar);
  7. };
  8. export default Avatar;