mirror of
https://github.com/Ssl1S/json-schema-editor-vue.git
synced 2025-12-30 09:47:54 +08:00
fix: 🐛 修复弹窗switch开关显示问题
This commit is contained in:
@@ -15,9 +15,9 @@ export function copyAttr(source, target){
|
||||
export function isNull(ele){
|
||||
if(typeof ele==='undefined'){
|
||||
return true;
|
||||
}else if(ele==null){
|
||||
}else if(ele===null){
|
||||
return true;
|
||||
}else if(ele==''){
|
||||
}else if(ele===''){
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user