Skip to content

Commit

Permalink
fix: config-provider error when change prop
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Feb 12, 2020
1 parent 84165c4 commit 7a40031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/config-provider/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Base from '../base';
function getWatch(keys = []) {
const watch = {};
keys.forEach(k => {
watch[k] = function() {
watch[k] = function(value) {
this._proxyVm._data[k] = value;
};
});
Expand Down

0 comments on commit 7a40031

Please sign in to comment.