Skip to content

Commit

Permalink
fix(Alert): fix wrong type of actions (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
171h authored Aug 6, 2023
1 parent 9ce3f49 commit 70c79fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/elements/Alert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

1 comment on commit 70c79fa

@vercel
Copy link

@vercel vercel bot commented on 70c79fa Aug 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ui – ./

ui-nuxtlabs.vercel.app
ui.nuxtlabs.com
ui-git-dev-nuxtlabs.vercel.app

Please sign in to comment.