Parcourir la source

Table: Table: Remove render default in `table-column`

lirilsu il y a 7 ans
Parent
commit
f347657651
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      packages/table/src/table-column.js

+ 1 - 1
packages/table/src/table-column.js

@@ -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;