element/packages/row/index.js

10 lines
161 B
JavaScript
Raw Normal View History

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