element/packages/card/index.js

9 lines
156 B
JavaScript
Raw Normal View History

2016-08-16 10:51:53 +00:00
const Card = require('./src/main');
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
2016-08-16 10:51:53 +00:00
Card.install = function(Vue) {
Vue.component(Card.name, Card);
};
module.exports = Card;