fix: when the form is destroyed, the form parameters still exist (#4834)

* fix: when the form is destroyed, the form parameters still exist

* chore: update deps
This commit is contained in:
Vben
2024-11-07 22:36:26 +08:00
committed by GitHub
parent dcdebaf7ca
commit 8f1e397077
9 changed files with 159 additions and 154 deletions

View File

@@ -109,7 +109,7 @@ function createCssOptions(injectGlobalScss = true) {
const relativePath = relative(root, filepath);
// apps下的包注入全局样式
if (relativePath.startsWith(`apps${path.sep}`)) {
return `@import "@vben/styles/global";\n${content}`;
return `@use "@vben/styles/global" as *;\n${content}`;
}
return content;
},