You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/avatar/index.ts

11 lines
203 B

import { App } from 'vue';
import Avatar from './Avatar';
/* istanbul ignore next */
Avatar.install = function(app: App) {
app.component(Avatar.name, Avatar);
return app;
};
export default Avatar;