Skip to content

Commit fdc2a31

Browse files
authoredAug 7, 2024··
fix(runtime-dom): apply css vars before mount (#11538)
fix #11533
1 parent e359ff0 commit fdc2a31

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎packages/runtime-dom/src/helpers/useCssVars.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {
33
Static,
44
type VNode,
55
getCurrentInstance,
6+
onBeforeMount,
67
onMounted,
78
onUnmounted,
89
warn,
@@ -42,8 +43,11 @@ export function useCssVars(getter: (ctx: any) => Record<string, string>) {
4243
updateTeleports(vars)
4344
}
4445

45-
onMounted(() => {
46+
onBeforeMount(() => {
4647
watchPostEffect(setVars)
48+
})
49+
50+
onMounted(() => {
4751
const ob = new MutationObserver(setVars)
4852
ob.observe(instance.subTree.el!.parentNode, { childList: true })
4953
onUnmounted(() => ob.disconnect())

0 commit comments

Comments
 (0)
Please sign in to comment.