We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07eaee7 commit dc2bc75Copy full SHA for dc2bc75
src/internal/load-css/index.ts
@@ -6,8 +6,9 @@ export function loadCSS(): void {
6
const componentOptions = getCurrentInstance()?.proxy?.$options
7
if (
8
!componentOptions ||
9
- cssMap.has(componentOptions) ||
10
- !componentOptions.__cKitStaticCSS
+ !componentOptions.__cKitStaticCSS ||
+ (cssMap.has(componentOptions) &&
11
+ cssMap.get(componentOptions) === componentOptions.__cKitStaticCSS)
12
) {
13
return
14
}
0 commit comments