fix: config-provider error when change prop

pull/1792/head
tangjinzhou 2020-02-12 10:38:15 +08:00
parent 84165c4f98
commit 7a40031955
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import Base from '../base';
function getWatch(keys = []) { function getWatch(keys = []) {
const watch = {}; const watch = {};
keys.forEach(k => { keys.forEach(k => {
watch[k] = function() { watch[k] = function(value) {
this._proxyVm._data[k] = value; this._proxyVm._data[k] = value;
}; };
}); });