element/packages/row/index.js

10 lines
161 B
JavaScript
Raw Normal View History

2016-07-27 14:15:02 +08:00
const ElRow = require('./src/row');
2016-10-19 22:48:35 +08:00
/* istanbul ignore next */
2016-07-27 14:15:02 +08:00
ElRow.install = function(Vue) {
2016-10-13 17:51:14 +08:00
Vue.component(ElRow.name, ElRow);
2016-07-27 14:15:02 +08:00
};
module.exports = ElRow;