Explorar el Código

:bug: Fixing a bug. 表单设计事件无法处理

aeizzz hace 1 año
padre
commit
3f24651fd7
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      src/views/gen/design.vue

+ 3 - 0
src/views/gen/design.vue

@@ -17,6 +17,9 @@ function stringifyWithFunctions(object) {
     if (key === 'onLoad') {
       return `(${val})`;
     }
+    if (['uploadPreview', 'change', 'focus', 'click', 'blur'].includes(key)) {
+      return `${val}`
+    }
     return val;
   });
 };