diff --git a/assets/iview.png b/assets/iview.png deleted file mode 100644 index 8a350334..00000000 Binary files a/assets/iview.png and /dev/null differ diff --git a/package.json b/package.json index 49f2dc1e..4efd0756 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iview", - "version": "0.9.9-rc-1", + "version": "0.9.9-rc-2", "title": "iView", "description": "A high quality UI components Library with Vue.js", "homepage": "http://www.iviewui.com", diff --git a/src/components/table/mixin.js b/src/components/table/mixin.js index f477259e..632f1ada 100644 --- a/src/components/table/mixin.js +++ b/src/components/table/mixin.js @@ -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]; } } } \ No newline at end of file diff --git a/src/components/table/table-body.vue b/src/components/table/table-body.vue index df540458..33628744 100644 --- a/src/components/table/table-body.vue +++ b/src/components/table/table-body.vue @@ -1,7 +1,7 @@