fix: add missing disabled prop
This commit is contained in:
parent
f2a0ae108c
commit
ed0ef385e9
@ -45,6 +45,7 @@ export interface ButtonProps extends /* @vue-ignore */ BaseButtonProps {
|
||||
icon?: IconProp
|
||||
iconColor?: string
|
||||
loading?: boolean
|
||||
disabled?: boolean
|
||||
shadow?: boolean
|
||||
wrap?: boolean
|
||||
}
|
||||
@ -54,6 +55,7 @@ const props = withDefaults(defineProps<ButtonProps>(), {
|
||||
icon: undefined,
|
||||
iconColor: undefined,
|
||||
loading: false,
|
||||
disabled: false,
|
||||
shadow: true,
|
||||
wrap: true,
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user