mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 04:39:09 +08:00
9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
const ElTableColumn = require('../table/src/table-column');
|
|
|
|
/* istanbul ignore next */
|
|
ElTableColumn.install = function(Vue) {
|
|
Vue.component(ElTableColumn.name, ElTableColumn);
|
|
};
|
|
|
|
module.exports = ElTableColumn;
|