Table: Table: Remove render default in table-column

This commit is contained in:
lirilsu 2017-10-18 16:19:53 +08:00 committed by 杨奕
parent 00c5028d8d
commit f347657651

View File

@ -181,7 +181,7 @@ export default {
created() {
this.customRender = this.$options.render;
this.$options.render = h => h('div', this.$slots.default);
this.$options.render = h => h('div');
this.columnId = (this.$parent.tableId || (this.$parent.columnId + '_')) + 'column_' + columnIdSeed++;
let parent = this.$parent;