mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(ConfigProvider): should remove theme class on unmount (#10898)
This commit is contained in:
parent
6a1516ca37
commit
f61b00175e
@ -2,6 +2,9 @@ import {
|
|||||||
watch,
|
watch,
|
||||||
provide,
|
provide,
|
||||||
computed,
|
computed,
|
||||||
|
onActivated,
|
||||||
|
onDeactivated,
|
||||||
|
onBeforeUnmount,
|
||||||
defineComponent,
|
defineComponent,
|
||||||
type PropType,
|
type PropType,
|
||||||
type InjectionKey,
|
type InjectionKey,
|
||||||
@ -57,14 +60,27 @@ export default defineComponent({
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (inBrowser) {
|
if (inBrowser) {
|
||||||
|
const addTheme = () => {
|
||||||
|
document.body.classList.add(`van-theme-${props.theme}`);
|
||||||
|
};
|
||||||
|
const removeTheme = (theme = props.theme) => {
|
||||||
|
document.body.classList.remove(`van-theme-${theme}`);
|
||||||
|
};
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.theme,
|
() => props.theme,
|
||||||
(newVal, oldVal) => {
|
(newVal, oldVal) => {
|
||||||
document.body.classList.remove(`van-theme-${oldVal}`);
|
if (oldVal) {
|
||||||
document.body.classList.add(`van-theme-${newVal}`);
|
removeTheme(oldVal);
|
||||||
|
}
|
||||||
|
addTheme();
|
||||||
},
|
},
|
||||||
{ immediate: true }
|
{ immediate: true }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
onActivated(addTheme);
|
||||||
|
onDeactivated(removeTheme);
|
||||||
|
onBeforeUnmount(removeTheme);
|
||||||
}
|
}
|
||||||
|
|
||||||
provide(CONFIG_PROVIDER_KEY, props);
|
provide(CONFIG_PROVIDER_KEY, props);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user