mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-01 03:38:30 +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;
|
|
|