diff --git a/packages/vant/src/config-provider/ConfigProvider.tsx b/packages/vant/src/config-provider/ConfigProvider.tsx index 7ff2105d5..a5ecfda1a 100644 --- a/packages/vant/src/config-provider/ConfigProvider.tsx +++ b/packages/vant/src/config-provider/ConfigProvider.tsx @@ -113,25 +113,19 @@ export default defineComponent({ onDeactivated(removeTheme); onBeforeUnmount(removeTheme); - watch( - style, - (newStyle, oldStyle) => { - if (props.themeVarsScope === 'global') { - syncThemeVarsOnRoot( - newStyle as Record, - oldStyle as Record, - ); - } - }, - { - immediate: true, - }, - ); + watch(style, (newStyle, oldStyle) => { + if (props.themeVarsScope === 'global') { + syncThemeVarsOnRoot( + newStyle as Record, + oldStyle as Record, + ); + } + }); watch( () => props.themeVarsScope, - (newScope, oldStyle) => { - if (oldStyle === 'global') { + (newScope, oldScope) => { + if (oldScope === 'global') { // remove on Root syncThemeVarsOnRoot({}, style.value as Record); } @@ -140,10 +134,12 @@ export default defineComponent({ syncThemeVarsOnRoot(style.value as Record, {}); } }, - { - immediate: true, - }, ); + + if (props.themeVarsScope === 'global') { + // add on root + syncThemeVarsOnRoot(style.value as Record, {}); + } } provide(CONFIG_PROVIDER_KEY, props);