mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 04:39:09 +08:00
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
const Badge = require('./src/main');
|
|
|
|
/* istanbul ignore next */
|
|
Badge.install = function(Vue) {
|
|
Vue.component(Badge.name, Badge);
|
|
};
|
|
|
|
module.exports = Badge;
|