Table: fix align attribute (#1338)

pull/1347/head
kingwl 2016-11-24 18:34:02 +08:00 committed by FuryBean
parent 6cd01c2647
commit a3f570789c
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ export default {
align(newVal) {
if (this.columnConfig) {
this.columnConfig.align = newVal;
this.columnConfig.align = newVal ? 'is-' + newVal : null;
}
},