Skip to content

Commit 7a40031

Browse files
committed
fix: config-provider error when change prop
1 parent 84165c4 commit 7a40031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/config-provider/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Base from '../base';
77
function getWatch(keys = []) {
88
const watch = {};
99
keys.forEach(k => {
10-
watch[k] = function() {
10+
watch[k] = function(value) {
1111
this._proxyVm._data[k] = value;
1212
};
1313
});

0 commit comments

Comments
 (0)