mirror of https://github.com/ElemeFE/element
8 lines
129 B
JavaScript
8 lines
129 B
JavaScript
|
const Rate = require('./src/main');
|
||
|
|
||
|
Rate.install = function(Vue) {
|
||
|
Vue.component(Rate.name, Rate);
|
||
|
};
|
||
|
|
||
|
module.exports = Rate;
|