Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(runtime-dom): cssvars correctly handles async components #8523

Merged
merged 10 commits into from
Apr 15, 2024
11 changes: 10 additions & 1 deletion packages/runtime-dom/src/helpers/useCssVars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,16 @@ export function useCssVars(getter: (ctx: any) => Record<string, string>) {

const setVars = () => {
const vars = getter(instance.proxy)
baiwusanyu-c marked this conversation as resolved.
Show resolved Hide resolved
setVarsOnVNode(instance.subTree, vars)
// #8520
if (instance.asyncDep && __FEATURE_SUSPENSE__) {
baiwusanyu-c marked this conversation as resolved.
Show resolved Hide resolved
instance.asyncDep = new Promise(resolve => {
resolve(instance.asyncDep)
}).then(() => {
setVarsOnVNode(instance.subTree, vars)
})
} else {
setVarsOnVNode(instance.subTree, vars)
}
updateTeleports(vars)
}

Expand Down