diff --git a/src/layouts/default/setting/components/ThemeColorPicker.vue b/src/layouts/default/setting/components/ThemeColorPicker.vue index d0f28ba89..ca4458fa0 100644 --- a/src/layouts/default/setting/components/ThemeColorPicker.vue +++ b/src/layouts/default/setting/components/ThemeColorPicker.vue @@ -31,7 +31,7 @@ props: { colorList: { type: Array as PropType, - defualt: [], + default: () => [], }, event: { type: Number as PropType, diff --git a/src/layouts/default/setting/components/TypePicker.vue b/src/layouts/default/setting/components/TypePicker.vue index ce8610a20..0ab918c9a 100644 --- a/src/layouts/default/setting/components/TypePicker.vue +++ b/src/layouts/default/setting/components/TypePicker.vue @@ -31,7 +31,7 @@ props: { menuTypeList: { type: Array as PropType, - defualt: () => [], + default: () => [], }, handler: { type: Function as PropType,