mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-01 03:38:30 +08:00
8 lines
129 B
JavaScript
8 lines
129 B
JavaScript
const Card = require('./src/main');
|
|
|
|
Card.install = function(Vue) {
|
|
Vue.component(Card.name, Card);
|
|
};
|
|
|
|
module.exports = Card;
|