Browse Source

fix: 修复props默认字段default返回空对象语法问题 (#2369)

前端爱码士 2 years ago
parent
commit
a12c5706e8

+ 1 - 1
src/components/Form/src/props.ts

@@ -9,7 +9,7 @@ import { propTypes } from '/@/utils/propTypes';
 export const basicProps = {
   model: {
     type: Object as PropType<Recordable>,
-    default: {},
+    default: () => ({}),
   },
   // 标签宽度  固定宽度
   labelWidth: {

+ 1 - 1
src/components/Menu/src/props.ts

@@ -41,7 +41,7 @@ export const basicProps = {
 export const itemProps = {
   item: {
     type: Object as PropType<Menu>,
-    default: {},
+    default: () => ({}),
   },
   level: propTypes.number,
   theme: propTypes.oneOf(['dark', 'light']),

+ 1 - 1
src/components/Tinymce/src/Editor.vue

@@ -76,7 +76,7 @@
   const tinymceProps = {
     options: {
       type: Object as PropType<Partial<RawEditorSettings>>,
-      default: {},
+      default: () => ({}),
     },
     value: {
       type: String,

+ 1 - 1
src/components/Upload/src/props.ts

@@ -27,7 +27,7 @@ export const basicProps = {
   },
   uploadParams: {
     type: Object as PropType<any>,
-    default: {},
+    default: () => ({}),
   },
   api: {
     type: Function as PropType<PromiseFn>,

+ 5 - 5
src/components/Verify/src/props.ts

@@ -38,19 +38,19 @@ export const basicProps = {
 
   wrapStyle: {
     type: Object as PropType<any>,
-    default: {},
+    default: () => ({}),
   },
   contentStyle: {
     type: Object as PropType<any>,
-    default: {},
+    default: () => ({}),
   },
   barStyle: {
     type: Object as PropType<any>,
-    default: {},
+    default: () => ({}),
   },
   actionStyle: {
     type: Object as PropType<any>,
-    default: {},
+    default: () => ({}),
   },
 };
 
@@ -67,7 +67,7 @@ export const rotateProps = {
 
   imgWrapStyle: {
     type: Object as PropType<any>,
-    default: {},
+    default: () => ({}),
   },
 
   minDegree: {