external css 修复

This commit is contained in:
tangly1024.com
2024-06-17 16:25:46 +08:00
parent 8efde42bc2
commit be048bb51e
3 changed files with 4 additions and 5 deletions

View File

@@ -122,7 +122,7 @@ export const convertVal = val => {
}
// 配置值前可能有污染的空格
if (!val.indexOf('[') > 0 || val.indexOf('{')) {
if (val.indexOf('[') < 0 && val.indexOf('{') < 0) {
return val
}