mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 04:39:09 +08:00
9 lines
132 B
JavaScript
9 lines
132 B
JavaScript
|
const ElRow = require('./src/row');
|
||
|
|
||
|
ElRow.install = function(Vue) {
|
||
|
Vue.component('el-row', ElRow);
|
||
|
};
|
||
|
|
||
|
module.exports = ElRow;
|
||
|
|