ant-design-vue/components/badge/index.ts

11 lines
197 B
TypeScript
Raw Normal View History

2020-10-13 07:02:35 +00:00
import { App } from 'vue';
2019-01-12 03:33:27 +00:00
import Badge from './Badge';
2017-11-16 10:29:02 +00:00
/* istanbul ignore next */
2020-10-13 07:02:35 +00:00
Badge.install = function(app: App) {
app.component(Badge.name, Badge);
2020-10-13 11:14:56 +00:00
return app;
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Badge;