Skip to content

Commit

Permalink
fix: query params lost
Browse files Browse the repository at this point in the history
  • Loading branch information
mynetfan committed Dec 15, 2024
1 parent aa8003e commit 552c3d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ async function init() {
const autoLoad = defaultGridOptions.proxyConfig?.autoLoad;
const enableProxyConfig = options.value.proxyConfig?.enabled;
if (enableProxyConfig && autoLoad) {
props.api.grid.commitProxy?.('_init');
props.api.grid.commitProxy?.('_init', formApi.form?.values ?? {});
// props.api.reload(formApi.form?.values ?? {});
}
Expand Down

0 comments on commit 552c3d9

Please sign in to comment.