chore(ConfigProvider): update var name and init execute the sync function twice (#12248)

This commit is contained in:
ShuGang Zhou 2023-09-04 22:21:56 +08:00 committed by GitHub
parent 91a92b2b06
commit f553a87037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,25 +113,19 @@ export default defineComponent({
onDeactivated(removeTheme);
onBeforeUnmount(removeTheme);
watch(
style,
(newStyle, oldStyle) => {
if (props.themeVarsScope === 'global') {
syncThemeVarsOnRoot(
newStyle as Record<string, Numeric>,
oldStyle as Record<string, Numeric>,
);
}
},
{
immediate: true,
},
);
watch(style, (newStyle, oldStyle) => {
if (props.themeVarsScope === 'global') {
syncThemeVarsOnRoot(
newStyle as Record<string, Numeric>,
oldStyle as Record<string, Numeric>,
);
}
});
watch(
() => props.themeVarsScope,
(newScope, oldStyle) => {
if (oldStyle === 'global') {
(newScope, oldScope) => {
if (oldScope === 'global') {
// remove on Root
syncThemeVarsOnRoot({}, style.value as Record<string, Numeric>);
}
@ -140,10 +134,12 @@ export default defineComponent({
syncThemeVarsOnRoot(style.value as Record<string, Numeric>, {});
}
},
{
immediate: true,
},
);
if (props.themeVarsScope === 'global') {
// add on root
syncThemeVarsOnRoot(style.value as Record<string, Numeric>, {});
}
}
provide(CONFIG_PROVIDER_KEY, props);