mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 09:21:25 +08:00
b32f34b6c9
Co-authored-by: tangjinzhou <415800467@qq.com>
9 lines
151 B
JavaScript
9 lines
151 B
JavaScript
import Badge from './Badge';
|
|
|
|
/* istanbul ignore next */
|
|
Badge.install = function(app) {
|
|
app.component(Badge.name, Badge);
|
|
};
|
|
|
|
export default Badge;
|