fix(Alert): fix wrong type of actions (#507)

This commit is contained in:
171H
2023-08-07 04:22:36 +08:00
committed by Benjamin Canac
parent a29877059e
commit b243e8c946

View File

@@ -76,7 +76,7 @@ export default defineComponent({
default: () => appConfig.ui.alert.default.closeButton
},
actions: {
type: Array as PropType<Button & { click: Function }[]>,
type: Array as PropType<(Button & { click: Function })[]>,
default: () => []
},
color: {