9 lines
154 B
JavaScript
9 lines
154 B
JavaScript
|
import Badge from './src/main';
|
||
|
|
||
|
/* istanbul ignore next */
|
||
|
Badge.install = function(Vue) {
|
||
|
Vue.component(Badge.name, Badge);
|
||
|
};
|
||
|
|
||
|
export default Badge;
|