picker component

This commit is contained in:
cookfront
2017-02-17 17:49:49 +08:00
parent e415d039f0
commit 9b6d85a887
2 changed files with 13 additions and 3 deletions

View File

@@ -115,6 +115,7 @@ export default {
*/
getColumnValues(index) {
let column = this.getColumn(index);
return column && column.currentValues;
},
/**
@@ -123,7 +124,7 @@ export default {
setColumnValues(index, values) {
let column = this.getColumn(index);
if (column) {
column.currentValues = values;
}
},