mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 13:17:47 +08:00
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
const ElRow = require('./src/row');
|
|
|
|
/* istanbul ignore next */
|
|
ElRow.install = function(Vue) {
|
|
Vue.component(ElRow.name, ElRow);
|
|
};
|
|
|
|
module.exports = ElRow;
|
|
|