publish 0.9.9-rc-2

fixed Table autowidth
This commit is contained in:
梁灏 2016-11-30 14:56:32 +08:00
parent 872c1354b9
commit 5e7a3b293b
7 changed files with 35 additions and 259 deletions

View file

@ -10,6 +10,9 @@ export default {
},
isPopperShow (column) {
return column.filters && ((!this.fixed && !column.fixed) || (this.fixed === 'left' && column.fixed === 'left') || (this.fixed === 'right' && column.fixed === 'right'));
},
setCellWidth (index) {
return this.column[index].width ? this.column.width : this.columnsWidth[index];
}
}
}